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.
2 parents 913bd94 + 228c668 commit c05f6efCopy full SHA for c05f6ef
.github/workflows/test.yaml
@@ -7,7 +7,18 @@ on:
7
jobs:
8
test:
9
runs-on: ubuntu-latest
10
- name: Tests
+ strategy:
11
+ matrix:
12
+ go:
13
+ - '1.17'
14
+ - '1.18'
15
+ - '1.19'
16
+ - '1.20'
17
+ - '1.21'
18
+ - '1.22'
19
+ - '1.23'
20
+ - '1.24'
21
+ name: Go ${{ matrix.go }} test
22
steps:
23
-
24
name: Checkout
@@ -16,7 +27,7 @@ jobs:
27
name: Setup Go
28
uses: actions/setup-go@v5
29
with:
- go-version-file: 'go.mod'
30
+ go-version: ${{ matrix.go }}
31
32
name: Run tests
33
run: go test ./...
go.mod
@@ -1,6 +1,6 @@
1
module github.com/symfony-cli/console
2
3
-go 1.22.4
+go 1.17
4
5
require (
6
github.com/agext/levenshtein v1.2.3
0 commit comments