Skip to content

Commit

Permalink
Test using multiple Go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nineinchnick authored and losipiuk committed Jul 10, 2022
1 parent 6ebecd5 commit 5e833a6
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go: ['>=1.18', '1.14']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ^1.14.7
go-version: ${{ matrix.go }}
- run: ./integration_tests/run.sh

0 comments on commit 5e833a6

Please sign in to comment.