From f02d97e62182dc6d293833028f1ee33bae929675 Mon Sep 17 00:00:00 2001 From: max furman Date: Tue, 13 Apr 2021 15:53:49 -0700 Subject: [PATCH] [action] use matrix strategy in release.test | bump to 1.16 --- .github/workflows/release.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eb171a4b..819a470e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: |