Skip to content

Merge pull request #1 from fmhr/severBuild #29

Merge pull request #1 from fmhr/severBuild

Merge pull request #1 from fmhr/severBuild #29

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
go: ["1.21"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- run: go test ./...
- run: go test -bench . -benchmem