Skip to content

Commit

Permalink
build: Test against Go 1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
dajohi authored Feb 18, 2021
1 parent 24ad209 commit 92011ed
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: [1.14, 1.15]
go: [1.15, 1.16]
steps:
- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Check out source
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Build
env:
GO111MODULE: "on"
Expand All @@ -22,5 +22,4 @@ jobs:
env:
GO111MODULE: "on"
run: |
export PATH=${PATH}:$(go env GOPATH)/bin
sh ./run_tests.sh

0 comments on commit 92011ed

Please sign in to comment.