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 1b1aa82 commit 00cc910Copy full SHA for 00cc910
.github/workflows/tests.yml
@@ -44,12 +44,14 @@ jobs:
44
45
- name: Build docker-gen
46
run: make docker-gen
47
+ env:
48
+ GOARCH: ${{ matrix.goarch }}
49
50
- name: Check code formatting
51
if: runner.os != 'Windows'
52
run: make check-gofmt
53
54
- name: Run tests
- run: go test -v ./internal/...
55
+ run: make test
56
env:
57
GOARCH: ${{ matrix.goarch }}
Makefile
@@ -62,4 +62,4 @@ check-gofmt:
62
fi
63
64
test:
65
- go test -race ./internal/...
+ go test -v ./internal/...
0 commit comments