Skip to content

Merge pull request #4 from gofurry/dev #20

Merge pull request #4 from gofurry/dev

Merge pull request #4 from gofurry/dev #20

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: "1.24.x"
cache: true
- run: test -z "$(gofmt -l .)"
- run: go test ./...
- run: go vet ./...