Skip to content

Commit

Permalink
.github: use latest Go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinburke committed Oct 6, 2021
1 parent 12dca65 commit 7ea0201
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ jobs:
test:
strategy:
matrix:
go-version: [1.15.x]
platform: [ubuntu-18.04]
go-version: [1.16.x, 1.17.x]
platform: [ubuntu-20.04]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
Expand All @@ -31,6 +31,7 @@ jobs:
${{ runner.os }}-go-v3-
# staticcheck needs this for GOPATH
- run: |
echo "GO111MODULE=off" >> $GITHUB_ENV
echo "GOPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
echo "PATH=$GITHUB_WORKSPACE/bin:$PATH" >> $GITHUB_ENV
echo "DEBIAN_FRONTEND=noninteractive" >> $GITHUB_ENV
Expand Down

0 comments on commit 7ea0201

Please sign in to comment.