Skip to content

Commit 80ddad8

Browse files
committed
dev: test only go1.14 on mac and win
1 parent 4e99c75 commit 80ddad8

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/pr.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,12 @@ jobs:
2323
tests-on-windows:
2424
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
2525
runs-on: windows-latest
26-
strategy:
27-
matrix:
28-
golang:
29-
- 1.13
30-
- 1.14
3126
steps:
3227
- uses: actions/checkout@v2
3328
- name: Install Go
3429
uses: actions/setup-go@v2
3530
with:
36-
go-version: ${{ matrix.golang }}
31+
go-version: 1.14 # test only the latest go version to speed up CI
3732
- name: Run tests on Windows
3833
run: make.exe test
3934
continue-on-error: true
@@ -47,7 +42,9 @@ jobs:
4742
- 1.14
4843
os:
4944
- ubuntu-latest
50-
- macos-latest
45+
include:
46+
- os: macos-latest
47+
golang: 1.14 # test only the latest go version on Mac OS to speed up CI
5148
steps:
5249
- uses: actions/checkout@v2
5350
- name: Install Go

0 commit comments

Comments
 (0)