File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change
1
+ on : [push, pull_request]
2
+ name : Test
3
+ jobs :
4
+ test :
5
+ strategy :
6
+ matrix :
7
+ go-version : [1.24.x]
8
+ os : [ubuntu-latest, macos-latest]
9
+ runs-on : ${{ matrix.os }}
10
+ steps :
11
+ - uses : actions/checkout@v4
12
+ - uses : actions/setup-go@v5
13
+ with :
14
+ go-version : ${{ matrix.go-version }}
15
+ - run : make test
16
+ build :
17
+ strategy :
18
+ matrix :
19
+ go-version : [1.24.x]
20
+ os : [ubuntu-latest, macos-latest]
21
+ runs-on : ${{ matrix.os }}
22
+ steps :
23
+ - uses : actions/checkout@v4
24
+ - uses : actions/setup-go@v5
25
+ with :
26
+ go-version : ${{ matrix.go-version }}
27
+ - run : make build
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ build-go:
61
61
.PHONY : test
62
62
test :
63
63
# Use package list mode to include all subdirectores. The -count=1 turns off caching.
64
- RUST_BACKTRACE=1 go test -v -count=1 ./...
64
+ CGO_ENABLED=1 RUST_BACKTRACE=1 go test -v -count=1 ./...
65
65
66
66
.PHONY : test-safety
67
67
test-safety :
You can’t perform that action at this time.
0 commit comments