Skip to content

Commit

Permalink
ci: test golang 1.16.x too
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Jul 1, 2021
1 parent 07861c8 commit bc7fe52
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/Test.yml
Expand Up @@ -20,6 +20,7 @@ jobs:
go:
- 1.14.x
- 1.15.x
- 1.16.x
name: '${{ matrix.platform }} | ${{ matrix.go }}'
runs-on: ${{ matrix.platform }}-latest
steps:
Expand All @@ -39,8 +40,9 @@ jobs:
- run: |
export GOBIN=$HOME/go/bin
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | bash -s -- -b $GOBIN latest
go install github.com/kyoh86/richgo
go install github.com/mitchellh/gox
[ "${{ matrix.go }}" = "1.16.x" ] && _version='@latest' || _version=''
go install github.com/kyoh86/richgo"${_version}"
go install github.com/mitchellh/gox"${_version}"
- run: PATH=$HOME/go/bin/:$PATH make

Expand Down

0 comments on commit bc7fe52

Please sign in to comment.