Skip to content

Run tests on every push #1

Run tests on every push

Run tests on every push #1

Workflow file for this run

name: Test
on: push
jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "1.21.4"
- name: Run tests
run: go test -v ./...