23 lines
406 B
YAML
23 lines
406 B
YAML
name: checks
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
env:
|
|
GOPROXY: https://goproxy.io,direct
|
|
|
|
jobs:
|
|
lint:
|
|
name: check and test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.20
|
|
- uses: actions/checkout@v3
|
|
- name: vet checks
|
|
run: make vet
|
|
- name: build
|
|
run: make build
|
|
- name: test
|
|
run: make test |