We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14199d5 commit c42c193Copy full SHA for c42c193
.github/workflows/tests.yml
@@ -4,13 +4,16 @@ on: [ push, pull_request ]
4
5
jobs:
6
unit-scenario-test:
7
+ strategy:
8
+ matrix:
9
+ go: [ "1.18", "1.24" ]
10
runs-on: [ Linux, X64 ]
11
steps:
12
- uses: actions/checkout@v4
13
- name: Set up Go
14
uses: actions/setup-go@v5
15
with:
- go-version: "1.24"
16
+ go-version: ${{ matrix.go }}
17
cache: false
18
- name: Scenario Tests
19
run: |
0 commit comments