Skip to content

Commit c42c193

Browse files
authored
test: add go1.18 to scenario-test (#1793)
1 parent 14199d5 commit c42c193

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,16 @@ on: [ push, pull_request ]
44

55
jobs:
66
unit-scenario-test:
7+
strategy:
8+
matrix:
9+
go: [ "1.18", "1.24" ]
710
runs-on: [ Linux, X64 ]
811
steps:
912
- uses: actions/checkout@v4
1013
- name: Set up Go
1114
uses: actions/setup-go@v5
1215
with:
13-
go-version: "1.24"
16+
go-version: ${{ matrix.go }}
1417
cache: false
1518
- name: Scenario Tests
1619
run: |

0 commit comments

Comments
 (0)