Skip to content

Compatible with Go v1.22+ #35

Compatible with Go v1.22+

Compatible with Go v1.22+ #35

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
go: ["1.18", "1.19", "1.22.3"]
steps:
- uses: actions/checkout@v3
# Install Go
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
# Run tests
- name: Test
run: go test ./... -v