We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4734f7 commit fdd2eabCopy full SHA for fdd2eab
.github/workflows/ci.yml
@@ -19,11 +19,14 @@ jobs:
19
- 5432:5432
20
# needed because the postgres container does not provide a healthcheck
21
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
22
+ strategy:
23
+ matrix:
24
+ go: ['1.17', '1.16', '1.15']
25
steps:
26
- uses: actions/checkout@v2.3.4
27
- uses: actions/setup-go@v2
28
with:
- go-version: '1.17'
29
+ go-version: ${{ matrix.go }}
30
- run: go build ./...
31
32
working-directory: tests
0 commit comments