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 395d392 commit 6be8b63Copy full SHA for 6be8b63
.github/workflows/go-test.yml
@@ -10,11 +10,11 @@ jobs:
10
fail-fast: false
11
matrix:
12
os: [ "ubuntu", "windows", "macos" ]
13
- go: [ "1.16.x", "1.17.x" ]
+ go: [ "1.17.x", "1.18.x" ]
14
env:
15
COVERAGES: ""
16
- runs-on: ${{ matrix.os }}-latest
17
- name: ${{ matrix.os}} (go ${{ matrix.go }})
+ runs-on: ${{ format('{0}-latest', matrix.os) }}
+ name: ${{ matrix.os }} (go ${{ matrix.go }})
18
steps:
19
- uses: actions/checkout@v2
20
with:
@@ -50,7 +50,9 @@ jobs:
50
51
GOARCH: 386
52
53
- run: go test -v ./...
+ run: |
54
+ export "PATH=${{ env.PATH_386 }}:$PATH"
55
+ go test -v ./...
56
- name: Run tests with race detector
57
if: ${{ matrix.os == 'ubuntu' }} # speed things up. Windows and OSX VMs are slow
58
uses: protocol/[email protected]
0 commit comments