Skip to content

Commit

Permalink
build: Go 1.18 has been released
Browse files Browse the repository at this point in the history
Because a lot of folks still use Go 1.16, we should continue to maintain
this as the minimim tested version
  • Loading branch information
blgm committed Apr 15, 2022
1 parent e072eda commit 6bafee3
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ name: test
on: [push, pull_request]

jobs:
test-go-1-16:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.16'
- uses: actions/checkout@v2
- run: make test
test-go-1-17:
runs-on: ubuntu-latest
steps:
Expand All @@ -11,12 +19,12 @@ jobs:
go-version: '1.17'
- uses: actions/checkout@v2
- run: make ginkgo
test-go-1-16:
test-go-1-18:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.16'
go-version: '1.18'
- uses: actions/checkout@v2
- run: make test
- run: make ginkgo

0 comments on commit 6bafee3

Please sign in to comment.