blk/.gitea/workflows/test.yml

22 lines
389 B
YAML
Raw Normal View History

2024-08-11 01:51:18 +00:00
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
2024-08-11 01:59:54 +00:00
run: make test
2024-08-11 02:28:02 +00:00
2024-08-11 01:59:54 +00:00