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 6a996b6 commit 967e8afCopy full SHA for 967e8af
.github/workflows/go-tests.yml
@@ -14,7 +14,7 @@ on:
14
pull_request:
15
paths:
16
- "go/**"
17
- - "!go/documentation/**"
+ - "!go/documentation/**"
18
- "shared/**"
19
- .github/workflows/go-tests.yml
20
- .github/actions/**
@@ -31,10 +31,15 @@ jobs:
31
if: github.repository_owner == 'github'
32
name: Test Linux (Ubuntu)
33
runs-on: ubuntu-latest-xl
34
+ strategy:
35
+ fail-fast: false
36
+ matrix:
37
+ go-version: ['~1.24.0', '1.25.0-rc.1']
38
steps:
39
- name: Check out code
40
uses: actions/checkout@v4
41
- name: Run tests
42
uses: ./go/actions/test
43
with:
44
run-code-checks: true
45
+ go-test-version: ${{ matrix.go-version }}
0 commit comments