Skip to content

Limit to supported Go versions #433

Limit to supported Go versions

Limit to supported Go versions #433

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
# Only supported versions (see: https://go.dev/dl/)
go-version: [1.20.x, 1.21.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test ./...