Update CI configs to v0.4.22

Update lint scripts and CI configs.
This commit is contained in:
Pion
2021-03-22 04:44:38 +00:00
committed by Sean DuBois
parent 6465248f1e
commit 56c926f20c
2 changed files with 9 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.14", "1.15"]
go: ["1.15", "1.16"]
fail-fast: false
name: Go ${{ matrix.go }}
steps:
@@ -34,7 +34,8 @@ jobs:
- name: Setup go-acc
run: |
go get -u github.com/ory/go-acc
go get github.com/ory/go-acc
git checkout go.mod go.sum
- name: Run test
run: |
@@ -53,7 +54,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.14", "1.15"]
go: ["1.15", "1.16"]
fail-fast: false
name: Go i386 ${{ matrix.go }}
steps:
@@ -109,7 +110,7 @@ jobs:
- name: Download Go
run: curl -sSfL https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz | tar -C ~ -xzf -
env:
GO_VERSION: 1.15
GO_VERSION: 1.16
- name: Set Go Root
run: echo "GOROOT=${HOME}/go" >> $GITHUB_ENV