Skip to content

Commit

Permalink
Add Go v1.18 to test matrix
Browse files Browse the repository at this point in the history
* Update Github Actions `setup-go` and `checkout`
* Change `go get <tool>` to `go install <tool>`
* Remove Go v1.16
  • Loading branch information
dghubble committed Mar 19, 2022
1 parent 3cc13f9 commit db86d7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
strategy:
fail-fast: false
matrix:
go: ['1.16', '1.17']
go: ['1.17', '1.18']
steps:
- name: setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{matrix.go}}

Expand All @@ -26,10 +26,10 @@ jobs:
terraform_wrapper: false

- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: tools
run: GO111MODULE=off go get golang.org/x/lint/golint
run: go install golang.org/x/lint/golint@latest

- name: test
run: make

0 comments on commit db86d7f

Please sign in to comment.