update for Go 1.19beta1 (#3460)

This commit is contained in:
Marten Seemann
2022-06-28 10:12:44 +02:00
committed by GitHub
parent 98b25879e5
commit f29dd273b4
9 changed files with 127 additions and 14 deletions

View File

@@ -4,7 +4,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [ "1.17.x", "1.18.x" ]
go: [ "1.17.x", "1.18.x", "1.19.0-beta1" ]
runs-on: ubuntu-latest
name: "Cross Compilation (Go ${{matrix.go}})"
steps:

View File

@@ -5,7 +5,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [ "1.16.x", "1.17.x", "1.18.x" ]
go: [ "1.16.x", "1.17.x", "1.18.x", "1.19.0-beta1" ]
runs-on: ubuntu-latest
env:
DEBUG: false # set this to true to export qlogs and save them as artifacts

View File

@@ -7,7 +7,7 @@ jobs:
fail-fast: false
matrix:
os: [ "ubuntu", "windows", "macos" ]
go: [ "1.16.x", "1.17.x", "1.18.x" ]
go: [ "1.16.x", "1.17.x", "1.18.x", "1.19.0-beta1" ]
runs-on: ${{ matrix.os }}-latest
name: Unit tests (${{ matrix.os}}, Go ${{ matrix.go }})
steps: