1
0
mirror of https://gitea.com/gitea/act synced 2026-05-11 21:51:17 +02:00
Files
act/.gitea/workflows/test.yml
Nicolas be28e49d4d Update
2026-04-20 12:50:05 +00:00

20 lines
410 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'
- run: make format-check
- run: make build
# currently doesnt work bc of docker commands will check later
# run: make lint
- run: make test