Skip to content

Commit 7af155f

Browse files
committed
Update CI
The macos-latest runners are now arm64, and there wasn't a golang version built for arm64 before 1.19.x. Also, the latest Vanguard commit uses 'tls.CipherSuites', which didn't exist before 1.14, so drop support (i.e. testing) for anything before then.
1 parent cb2c69a commit 7af155f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@ jobs:
66
test:
77
strategy:
88
matrix:
9-
go-version: [1.13.x, 1.18.x, 1.20.x]
9+
go-version: [1.19.x, 1.22.x, 1.24.x]
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11+
include:
12+
- os: ubuntu-latest
13+
go-version: 1.14.x
14+
- os: windows-latest
15+
go-version: 1.14.x
1116
runs-on: ${{ matrix.os }}
1217
steps:
1318
- name: Install Go
14-
uses: actions/setup-go@v2
19+
uses: actions/setup-go@v5
1520
with:
1621
go-version: ${{ matrix.go-version }}
1722
- name: Checkout code

0 commit comments

Comments
 (0)