blk/.gitea/workflows/test.yml
optclblast 1d570773b6
Some checks failed
checks / check and test (push) Failing after 6m30s
+1
2024-08-11 05:28:02 +03:00

22 lines
389 B
YAML

name: checks
on:
- push
- pull_request
jobs:
lint:
name: check and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: vet checks
run: make vet
- name: build
run: make build
- name: test
run: make test