Skip to content

Move go.mod and go.sum to the root (#6) #31

Move go.mod and go.sum to the root (#6)

Move go.mod and go.sum to the root (#6) #31

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]
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
# Run tests
- name: Tests
run: go test -v -race ./...