Skip to content

Commit fdd2eab

Browse files
committed
Test more Go versions
1 parent d4734f7 commit fdd2eab

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,14 @@ jobs:
1919
- 5432:5432
2020
# needed because the postgres container does not provide a healthcheck
2121
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']
2225
steps:
2326
- uses: actions/checkout@v2.3.4
2427
- uses: actions/setup-go@v2
2528
with:
26-
go-version: '1.17'
29+
go-version: ${{ matrix.go }}
2730
- run: go build ./...
2831
- run: go build ./...
2932
working-directory: tests

0 commit comments

Comments
 (0)