Skip to content

Breaking changes for v2.0.0 (#95) #473

Breaking changes for v2.0.0 (#95)

Breaking changes for v2.0.0 (#95) #473

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go: ["1.20"]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Checkout repository
uses: actions/checkout@v3
- name: Run tests
run: go test -v ./...