From 85d372ac71e2957da63d038d375294cae456e90b Mon Sep 17 00:00:00 2001 From: Jacob Alheid Date: Tue, 18 May 2021 18:27:13 -0700 Subject: [PATCH] feat(ci): add test matrix for golang versions (#102) --- .github/workflows/go.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 363b757..8489cbf 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -11,12 +11,15 @@ jobs: build: name: Build runs-on: ubuntu-latest + strategy: + matrix: + golang: [1.14, 1.16] steps: - - name: Set up Go 1.14 + - name: Set up Go ${{ matrix.golang }} uses: actions/setup-go@v1 with: - go-version: 1.14 + go-version: ${{ matrix.golang }} id: go - name: Check out code into the Go module directory