File tree Expand file tree Collapse file tree 1 file changed +8
-10
lines changed
Expand file tree Collapse file tree 1 file changed +8
-10
lines changed Original file line number Diff line number Diff line change 88 name : Test with Coverage
99 runs-on : ubuntu-latest
1010 steps :
11- - name : Set up dependencies
11+ - name : Set up Go
12+ uses : actions/setup-go@v1
13+ with :
14+ go-version : " 1.23"
15+ - name : Check out code
16+ uses : actions/checkout@v2
17+ - name : Install dependencies
1218 run : |
19+ go mod download
1320 sudo apt-get update
1421 sudo apt-get install -y build-essential
1522 - name : Configure CMake
2532 if : success()
2633 run : |
2734 sudo cp build/*.so /usr/lib/
28- - name : Set up Go
29- uses : actions/setup-go@v1
30- with :
31- go-version : " 1.23"
32- - name : Check out code
33- uses : actions/checkout@v2
34- - name : Install dependencies
35- run : |
36- go mod download
3735 - name : Run Unit Tests
3836 run : |
3937 go test -tags noasm -race -covermode atomic -coverprofile=profile.cov ./...
You can’t perform that action at this time.
0 commit comments