1
0
mirror of https://gitea.com/gitea/act synced 2026-05-12 23:31:20 +02:00
Files
act/.gitea/workflows/test.yml
2026-04-19 19:13:25 +00:00

23 lines
429 B
YAML

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: Check formatting
run: make format-check
- name: Build
run: make build
- name: Lint
run: make lint
- name: Test
run: make test