Skip to content

add exhaustive support (#28) #88

add exhaustive support (#28)

add exhaustive support (#28) #88

Workflow file for this run

name: Test
on:
push:
branches: ["dev", "main"]
pull_request:
branches: ["dev", "main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21.1
- run: |
go work init .
go work use ./testing/
go work sync
- name: Test
run: |
go test -timeout 30s -v -race ./...
go test -timeout 30s -v -race ./testing/...