build: test against Go 1.17 (#291)

This commit is contained in:
David Hill 2021-08-22 12:34:30 -05:00 committed by GitHub
parent ce0e28b8de
commit 9ef8834187
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: [1.15, 1.16]
go: [1.16, 1.17]
steps:
- name: Set up Go
uses: actions/setup-go@v2
@ -15,7 +15,7 @@ jobs:
- name: Check out source
uses: actions/checkout@v2
- name: Install Linters
run: "curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.40.1"
run: "curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.42.0"
- name: Build
env:
GO111MODULE: "on"