Skip to content

v1.1.2

v1.1.2 #34

Workflow file for this run

on: [push, pull_request]
jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- run: |
if [[ "$(go fmt)" ]]; then
echo "Go files were not formatted properly"
exit 1
fi
./build
go test
go vet