Skip to content

Set go version to minimum (#20) #21

Set go version to minimum (#20)

Set go version to minimum (#20) #21

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22.x', '1.23.x']
name: Go ${{ matrix.go }} tests
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Run Tests
run: go test -v ./...