Skip to content

Merge pull request #8 from totherme/test-go-1.21 #25

Merge pull request #8 from totherme/test-go-1.21

Merge pull request #8 from totherme/test-go-1.21 #25

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.19', '1.20', '1.21' ]
name: Test Go ${{ matrix.go }}
steps:
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v4
- run: go test ./...