From 19190fdfd3ca3d370594d4a2bc2a6e56436d06b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Fri, 1 Jul 2022 22:43:36 +0100 Subject: [PATCH] Add min supported and two most recent Go versions to workflow --- .github/workflows/main.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index db07fc0..934d09f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,12 +9,15 @@ on: jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + go: [ '1.18', '1.17', '1.13' ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: - go-version: 1.17 + go-version: ${{ matrix.go }} - name: Build run: go build -v ./... - name: Test