Skip to content

add .goreleaser.yaml #15

add .goreleaser.yaml

add .goreleaser.yaml #15

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.19", "1.20", "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