Skip to content

ci(conf): add Go 1.21 to the matrix #4

ci(conf): add Go 1.21 to the matrix

ci(conf): add Go 1.21 to the matrix #4

Workflow file for this run

name: Tests
on:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- '1.17'
- '1.18'
- '1.19'
- '1.20'
- '1.21'
name: Go ${{ matrix.go }} test
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: go test ./...