niki/.gitea/workflows/demo.yaml

19 lines
344 B
YAML
Raw Normal View History

2024-07-13 15:57:26 +00:00
name: checks
on:
- push
- pull_request
2024-07-13 15:49:11 +00:00
jobs:
2024-07-13 15:57:26 +00:00
lint:
name: check and test
2024-07-13 15:49:11 +00:00
runs-on: ubuntu-latest
steps:
2024-07-13 15:57:26 +00:00
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: vet checks
run: go vet -v ./...
- name: build
run: go build -v ./...