Skip to content

chore - support latest 3 minor versions of Go. cleanup makefile #14

chore - support latest 3 minor versions of Go. cleanup makefile

chore - support latest 3 minor versions of Go. cleanup makefile #14

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
tests:
strategy:
matrix:
go-version: [1.20.x, 1.21.x, 1.22.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
name: "install go"
with:
go-version: ${{ matrix.go-version }}
- name: "tests"
run: go test ./...