File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ jobs:
1010 fail-fast : false
1111 matrix :
1212 os : [ "ubuntu", "windows", "macos" ]
13- go : [ "1.16 .x", "1.17 .x" ]
13+ go : [ "1.17 .x", "1.18 .x" ]
1414 env :
1515 COVERAGES : " "
16- runs-on : ${{ matrix.os }}-latest
17- name : ${{ matrix.os}} (go ${{ matrix.go }})
16+ runs-on : ${{ format('{0}-latest', matrix.os) }}
17+ name : ${{ matrix.os }} (go ${{ matrix.go }})
1818 steps :
1919 - uses : actions/checkout@v2
2020 with :
5050 env :
5151 GOARCH : 386
5252 with :
53- run : go test -v ./...
53+ run : |
54+ export "PATH=${{ env.PATH_386 }}:$PATH"
55+ go test -v ./...
5456 - name : Run tests with race detector
5557 if : ${{ matrix.os == 'ubuntu' }} # speed things up. Windows and OSX VMs are slow
5658 uses : protocol/multiple-go-modules@v1.2
You can’t perform that action at this time.
0 commit comments