Skip to content

Commit

Permalink
Test with last 2 versions of Go
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanb committed May 7, 2023
1 parent f9107bf commit 7be1ece
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ 'stable', 'oldstable' ]
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.18
go-version: ${{ matrix.go }}

- name: Test
run: go test -v ./...

0 comments on commit 7be1ece

Please sign in to comment.