ods/.forgejo/workflows/main.yaml
Julien Dessaux aa732d25d6
All checks were successful
/ fmt (push) Successful in 29s
/ tests (push) Successful in 1m0s
chore(tooling): test forgejo actions
2025-03-13 00:04:30 +01:00

24 lines
474 B
YAML

---
on:
push:
workflow_dispatch:
jobs:
fmt:
runs-on: 'self-hosted'
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/setup-go@v5'
with:
go-version-file: 'go.mod'
- 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