File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Run Benchmarks
2+ on :
3+ push :
4+ branches :
5+ - " **"
6+ pull_request :
7+ types :
8+ - opened
9+ - reopened
10+ branches :
11+ - " **"
12+ jobs :
13+ unittests :
14+ name : Unit Tests
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/checkout@v3
18+ - name : Set up Go
19+ uses : actions/setup-go@v3
20+ with :
21+ go-version : 1.24
22+ check-latest : true
23+ cache : true
24+ - name : Get dependencies
25+ run : |
26+ go install github.com/kyoh86/richgo@latest
27+ go get -v -t -d ./...
28+ - name : Run tests
29+ id : tests
30+ run : richgo test -v -bench=. ./...
31+ env :
32+ IN_TRAVIS_CI : yes
33+ RICHGO_FORCE_COLOR : 1
Original file line number Diff line number Diff line change 2727 go get -v -t -d ./...
2828 - name : Run tests
2929 id : tests
30- run : richgo test -v -race -cover -bench=. ./...
30+ run : richgo test -v -race -cover ./...
3131 env :
3232 IN_TRAVIS_CI : yes
3333 RICHGO_FORCE_COLOR : 1
You can’t perform that action at this time.
0 commit comments