add support for Go 1.20 (#3641)

This commit is contained in:
Marten Seemann
2023-01-17 23:22:36 -08:00
committed by GitHub
parent 2aa71ff76b
commit 576d85cd3d
9 changed files with 115 additions and 13 deletions

View File

@@ -4,14 +4,13 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [ "1.18.x", "1.19.x" ]
go: [ "1.18.x", "1.19.x", "1.20.0-rc.2" ]
runs-on: ubuntu-latest
name: "Cross Compilation (Go ${{matrix.go}})"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
stable: '!contains(${{ matrix.go }}, "beta") && !contains(${{ matrix.go }}, "rc")'
go-version: ${{ matrix.go }}
- name: Install build utils
run: |