2023-02-24 09:30:09 -06:00
|
|
|
name: checks
|
2023-04-28 23:07:15 -05:00
|
|
|
on:
|
2023-02-24 09:30:09 -06:00
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
name: check and test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-23 21:06:21 -06:00
|
|
|
- uses: actions/checkout@v4
|
2024-03-14 08:27:47 -05:00
|
|
|
- uses: actions/setup-go@v5
|
2023-02-24 09:30:09 -06:00
|
|
|
with:
|
2024-03-14 08:27:47 -05:00
|
|
|
go-version-file: 'go.mod'
|
2023-02-24 09:30:09 -06:00
|
|
|
- name: vet checks
|
|
|
|
run: make vet
|
|
|
|
- name: build
|
|
|
|
run: make build
|
|
|
|
- name: test
|
2023-04-19 04:46:52 -05:00
|
|
|
run: make test
|