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 4e99c75 commit 80ddad8Copy full SHA for 80ddad8
.github/workflows/pr.yml
@@ -23,17 +23,12 @@ jobs:
23
tests-on-windows:
24
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
25
runs-on: windows-latest
26
- strategy:
27
- matrix:
28
- golang:
29
- - 1.13
30
- - 1.14
31
steps:
32
- uses: actions/checkout@v2
33
- name: Install Go
34
uses: actions/setup-go@v2
35
with:
36
- go-version: ${{ matrix.golang }}
+ go-version: 1.14 # test only the latest go version to speed up CI
37
- name: Run tests on Windows
38
run: make.exe test
39
continue-on-error: true
@@ -47,7 +42,9 @@ jobs:
47
42
- 1.14
48
43
os:
49
44
- ubuntu-latest
50
- - macos-latest
45
+ include:
46
+ - os: macos-latest
+ golang: 1.14 # test only the latest go version on Mac OS to speed up CI
51
52
53
0 commit comments