add support for Go 1.16

This commit is contained in:
Marten Seemann
2020-12-23 15:56:29 +07:00
parent 68e8c4d1dd
commit 57e3f55279
12 changed files with 151 additions and 5 deletions

View File

@@ -4,13 +4,14 @@ jobs:
unit:
strategy:
matrix:
go: [ "1.14", "1.15" ]
go: [ "1.14.x", "1.15.x", "1.16.0-beta1" ]
runs-on: ubuntu-latest
name: Integration Tests, Go ${{ matrix.go }})
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
stable: !contains(${{ matrix.go }}, "beta") && !contains(${{ matrix.go }}, "rc")
go-version: ${{ matrix.go }}
- run: go version
- name: Install Ginkgo