Add min supported and two most recent Go versions to workflow

This commit is contained in:
Joël Stemmer 2022-07-01 22:43:36 +01:00
parent 63e0c8be15
commit 19190fdfd3

View File

@ -9,12 +9,15 @@ on:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.18', '1.17', '1.13' ]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v2 uses: actions/setup-go@v3
with: with:
go-version: 1.17 go-version: ${{ matrix.go }}
- name: Build - name: Build
run: go build -v ./... run: go build -v ./...
- name: Test - name: Test