Update golang version in CI.

This commit is contained in:
Arijit Das 2021-09-30 19:52:30 +05:30
parent 5d1d325a5c
commit 690eb156db
2 changed files with 5 additions and 2 deletions

View File

@ -6,6 +6,9 @@ jobs:
linter-check:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.16.x'
- uses: actions/checkout@v2
- name: Run linter
run: go run build/ci.go lint

View File

@ -15,7 +15,7 @@ jobs:
name: Run geth unit test
strategy:
matrix:
go-version: [ 1.15.x]
go-version: [ 1.16.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
env:
@ -43,7 +43,7 @@ jobs:
GOPATH: /tmp/go
strategy:
matrix:
go-version: [ 1.15.x]
go-version: [ 1.16.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps: