dnscms: add gitea workflow
dnscms / ci (push) Successful in 1m22s

This commit is contained in:
2026-08-04 03:51:54 +02:00
parent 952a8bca13
commit 031d61e1fe
2 changed files with 28 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
name: dnscms
on:
push:
paths:
- "dnscms/**"
- ".gitea/workflows/dnscms.yaml"
pull_request:
paths:
- "dnscms/**"
- ".gitea/workflows/dnscms.yaml"
defaults:
run:
working-directory: dnscms
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v7
- run: uv sync --locked
- run: uv run ruff check .
- run: uv run ruff format --check .
- run: uv run manage.py makemigrations --check --dry-run --settings=dnscms.settings.test
- run: uv run pytest