[action] use matrix strategy in release.test | bump to 1.16

pull/536/head v0.15.12-rc1
max furman 3 years ago
parent c71d56e4ae
commit f02d97e621

@ -10,6 +10,9 @@ jobs:
test:
name: Lint, Test, Build
runs-on: ubuntu-20.04
strategy:
matrix:
go: [ '1.15', '1.16' ]
outputs:
is_prerelease: ${{ steps.is_prerelease.outputs.IS_PRERELEASE }}
steps:
@ -20,7 +23,7 @@ jobs:
name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.15.8'
go-version: ${{ matrix.go }}
-
name: Install Deps
id: install-deps
@ -120,7 +123,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.15.8'
go-version: '1.16'
-
name: APT Install
id: aptInstall
@ -150,7 +153,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.15.8'
go-version: '1.16'
- name: Build
id: build
run: |

Loading…
Cancel
Save