1
0
mirror of https://gitea.com/gitea/act synced 2026-05-11 10:51:22 +02:00
Files
act/.gitea/workflows/test.yml
2026-04-20 12:51:02 +00:00

22 lines
446 B
YAML

name: checks
on:
push:
branches: main
pull_request:
branches: main
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