add support for Go 1.17 Beta 1

This commit is contained in:
Marten Seemann
2021-06-14 18:32:12 -07:00
parent e36795e066
commit 7c74d1eb47
8 changed files with 9 additions and 9 deletions

View File

@@ -4,7 +4,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [ "1.15.x", "1.16.x" ]
go: [ "1.15.x", "1.16.x", "1.17.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.15.x", "1.16.x" ]
go: [ "1.15.x", "1.16.x", "1.17.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.15.x", "1.16.x" ]
go: [ "1.15.x", "1.16.x", "1.17.0-beta1" ]
runs-on: ${{ matrix.os }}-latest
name: Unit tests (${{ matrix.os}}, Go ${{ matrix.go }})
steps: