ci: test on Golang 1.18

This commit is contained in:
umarcor 2022-03-16 11:42:56 +01:00
parent 81d27c8f8d
commit 4d132cf694

View file

@ -36,6 +36,7 @@ jobs:
- 15 - 15
- 16 - 16
- 17 - 17
- 18
name: '${{ matrix.platform }} | 1.${{ matrix.go }}.x' name: '${{ matrix.platform }} | 1.${{ matrix.go }}.x'
runs-on: ${{ matrix.platform }}-latest runs-on: ${{ matrix.platform }}-latest
steps: steps:
@ -55,7 +56,7 @@ jobs:
- run: | - run: |
export GOBIN=$HOME/go/bin export GOBIN=$HOME/go/bin
case "${{ matrix.go }}" in case "${{ matrix.go }}" in
16|17) _version='@latest';; 16|17|18) _version='@latest';;
*) _version='';; *) _version='';;
esac esac
go install github.com/kyoh86/richgo"${_version}" go install github.com/kyoh86/richgo"${_version}"