Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: test on Golang 1.19 #1782

Merged
merged 4 commits into from Aug 30, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -15,7 +15,8 @@ jobs:

- uses: actions/setup-go@v3
with:
go-version: '1.17'
go-version: '^1.19'
check-latest: true

- uses: actions/checkout@v3

Expand All @@ -37,6 +38,7 @@ jobs:
- 16
- 17
- 18
- 19
name: '${{ matrix.platform }} | 1.${{ matrix.go }}.x'
runs-on: ${{ matrix.platform }}-latest
steps:
Expand All @@ -56,8 +58,8 @@ jobs:
- run: |
export GOBIN=$HOME/go/bin
case "${{ matrix.go }}" in
16|17|18) _version='@latest';;
*) _version='';;
14|15) _version='';;
*) _version='@latest';;
marckhouzam marked this conversation as resolved.
Show resolved Hide resolved
esac
go install github.com/kyoh86/richgo"${_version}"
go install github.com/mitchellh/gox"${_version}"
Expand Down