Skip to content

Commit 2720358

Browse files
authoredJun 13, 2024··
Improve CI action (#1512)
* Don't fail fast to avoid cancelling tests if one run fails * Use oldstable and stable to target Go releases to keep CI up to date
1 parent 4c8b9e1 commit 2720358

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎.github/workflows/ci.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ on:
88
jobs:
99
build-and-test:
1010
strategy:
11+
fail-fast: false
1112
matrix:
1213
os: [ubuntu-latest, macos-intel, macos-arm, windows-latest]
13-
go-version: ["1.21", "1.22"]
14+
go-version: ["oldstable", "stable"]
1415
include:
1516
- os: ubuntu-latest
16-
go-version: "1.22"
17+
go-version: "stable"
1718
# We only want to upload coverage on a single target
1819
uploadCoverage: true
1920
# We only want to check docker compose on a single target
@@ -92,7 +93,7 @@ jobs:
9293
cloud-test:
9394
strategy:
9495
matrix:
95-
go-version: ["1.21", "1.22"]
96+
go-version: ["oldstable", "stable"]
9697
# Try to avoid running tests in parallel to avoid workflow ID conflict
9798
max-parallel: 1
9899
# Only supported in non-fork runs, since secrets are not available in forks.

0 commit comments

Comments
 (0)
Please sign in to comment.