chore(tooling): test forgejo actions
All checks were successful
/ fmt (push) Successful in 29s
/ tests (push) Successful in 1m0s

This commit is contained in:
Julien Dessaux 2025-03-12 23:39:21 +01:00
parent 89118c45d1
commit aa732d25d6
Signed by: adyxax
GPG key ID: F92E51B86E07177E

View file

@ -0,0 +1,24 @@
---
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