We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b39957d commit 717b9bbCopy full SHA for 717b9bb
1 file changed
.github/workflows/test.yml
@@ -1,30 +1,24 @@
1
name: test
2
-
3
on: [push, pull_request]
4
5
jobs:
6
- test-go-1-16:
7
- runs-on: ubuntu-latest
8
- steps:
9
- - uses: actions/setup-go@v3
10
- with:
11
- go-version: '1.16'
12
- - uses: actions/checkout@v3
13
- - run: make ginkgo
14
- test-go-1-17:
+ test-and-lint:
+ name: Test and Lint Go 1.17
15
runs-on: ubuntu-latest
16
steps:
17
- uses: actions/setup-go@v3
18
with:
19
go-version: '1.17'
20
- uses: actions/checkout@v3
21
- run: make test
22
- test-go-1-18:
+ test:
23
+ strategy:
+ matrix:
+ go: [ '1.16', '1.18', '1.19' ]
+ name: Test Go ${{ matrix.go }}
24
25
26
27
- go-version: '1.18'
+ go-version: ${{ matrix.go }}
28
29
- run: make ginkgo
30
0 commit comments