We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a670bd6 commit 9399071Copy full SHA for 9399071
.github/workflows/darwin.yaml
@@ -15,4 +15,6 @@ jobs:
15
- name: Check out code into the Go module directory
16
uses: actions/checkout@v2
17
- name: Run unit tests
18
- run: go test -v -race ./pkg/...
+ run: |
19
+ go version
20
+ go test -v -race ./pkg/...
.github/workflows/linux.yaml
@@ -21,6 +21,7 @@ jobs:
21
22
- name: Build Test
23
run: |
24
25
export PATH=$PATH:$HOME/.local/bin
26
make verify
27
go test -covermode=count -coverprofile=profile.cov ./pkg/...
.github/workflows/windows.yaml
@@ -18,4 +18,5 @@ jobs:
- name: Run Windows Unit Tests
go test -v -race ./pkg/...
0 commit comments