We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed5a48d commit e8c1252Copy full SHA for e8c1252
2 files changed
.github/workflows/ci.yml
@@ -29,4 +29,4 @@ jobs:
29
run: go vet ./...
30
31
- name: Test
32
- run: CGO_ENABLED=0 go test -race -timeout 120s ./...
+ run: CGO_ENABLED=1 go test -race -timeout 120s ./...
Makefile
@@ -7,7 +7,7 @@ vet:
7
go vet ./...
8
9
test:
10
- CGO_ENABLED=0 go test -race -timeout 120s ./...
+ CGO_ENABLED=1 go test -race -timeout 120s ./...
11
12
## check runs the same steps as CI: build → vet → test
13
check: build vet test
0 commit comments