We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d88aee4 commit d9e1732Copy full SHA for d9e1732
2 files changed
.github/workflows/test.yml
@@ -13,5 +13,8 @@ jobs:
13
with:
14
go-version-file: "go.mod"
15
- name: Run tests
16
- run: go test ./...
+ run: |
17
+ gofmt -d .
18
+ go vet ./...
19
+ go test ./...
20
cmd/integrationtest/pi_test.go
@@ -13,7 +13,7 @@ import (
func TestIntegration(t *testing.T) {
prepareBuildDirectory(t)
build(t, "pi")
-
+
testCtx, cancelCtx := context.WithCancel(t.Context())
defer cancelCtx()
0 commit comments