actions: Print go version
In order to rapidly debug test issues, issue `go version` prior to running any test.
This commit is contained in:
parent
0623e9e6e9
commit
339d4d25ae
4
.github/workflows/darwin.yaml
vendored
4
.github/workflows/darwin.yaml
vendored
@ -15,4 +15,6 @@ jobs:
|
||||
- name: Check out code into the Go module directory
|
||||
uses: actions/checkout@v2
|
||||
- name: Run unit tests
|
||||
run: go test -v -race ./pkg/...
|
||||
run: |
|
||||
go version
|
||||
go test -v -race ./pkg/...
|
||||
|
||||
1
.github/workflows/linux.yaml
vendored
1
.github/workflows/linux.yaml
vendored
@ -21,6 +21,7 @@ jobs:
|
||||
|
||||
- name: Build Test
|
||||
run: |
|
||||
go version
|
||||
export PATH=$PATH:$HOME/.local/bin
|
||||
make verify
|
||||
go test -covermode=count -coverprofile=profile.cov ./pkg/...
|
||||
|
||||
1
.github/workflows/windows.yaml
vendored
1
.github/workflows/windows.yaml
vendored
@ -18,4 +18,5 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
- name: Run Windows Unit Tests
|
||||
run: |
|
||||
go version
|
||||
go test -v -race ./pkg/...
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user