ods/.forgejo/workflows/main.yaml
Julien Dessaux a67f11f7a7
Some checks failed
/ fmt (push) Failing after 3s
/ tests (push) Failing after 49s
chore(tooling): test forgejo actions
2025-03-12 23:59:35 +01:00

22 lines
424 B
YAML

---
on:
push:
workflow_dispatch:
jobs:
fmt:
runs-on: 'self-hosted'
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/setup-go@v5'
- run: |
make tidy no-dirty
tests:
runs-on: 'self-hosted'
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/setup-go@v5'
with:
go-version-file: 'go.mod'
- run: |
make check tidy no-dirty