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 6172301 commit f24bcf8Copy full SHA for f24bcf8
.github/workflows/go.yml
@@ -2,21 +2,24 @@ name: Go
2
3
on:
4
push:
5
- branches: [ main ]
+ branches: [main]
6
pull_request:
7
8
9
jobs:
10
e2e:
11
+ strategy:
12
+ matrix:
13
+ go-version: ["=1.18", "^1.23"]
14
runs-on: ubuntu-latest
15
steps:
- - uses: actions/checkout@v2
16
+ - uses: actions/checkout@v4
17
- - name: Set up Go
- uses: actions/setup-go@v2
- with:
18
- go-version: 1.18
+ - name: Set up Go
19
+ uses: actions/setup-go@v5
20
+ with:
21
+ go-version: ${{ matrix.go-version }}
22
- - name: Test
- run: |
- go test *.go
23
+ - name: Test
24
+ run: |
25
+ go test -v .
0 commit comments