add test for ALT
Some checks failed
release-nightly / goreleaser (push) Failing after 16s
release-nightly / release-image (push) Has been cancelled
checks / check and test (push) Successful in 2m11s

This commit is contained in:
Алексей Шабалин 2023-08-11 23:47:56 +03:00
parent ec03f19650
commit befb32bbf7

View File

@ -0,0 +1,20 @@
name: checks
on:
- push
- pull_request
jobs:
lint:
name: check and test
runs-on: alt-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