test2
Some checks failed
checks / check and test (push) Failing after 1m55s

This commit is contained in:
2026-04-05 00:37:49 -04:00
parent 029d9e6296
commit eb3d5db144

View File

@@ -0,0 +1,20 @@
name: checks
on:
- push
- pull_request
jobs:
lint:
name: check and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: lint
run: make lint
- name: build
run: make build
- name: test
run: make test