ods/.forgejo/workflows/main.yaml

23 lines
424 B
YAML
Raw Normal View History

2025-03-12 23:39:21 +01:00
---
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