Files
howtos/.gitea/workflows/ci.yml
user a010db3450
Some checks failed
CI / lint (push) Failing after 2s
CI / link-check (push) Failing after 2s
feat: add Gitea CI workflow with podman-based lint and link check
- Markdown lint via markdownlint-cli2 container
- Internal cross-reference checker for See Also sections
- Both jobs run on linux runner using podman containers
2026-02-22 06:33:28 +01:00

36 lines
739 B
YAML

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
runs-on: linux
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Markdown lint
run: |
podman run --rm \
-v "${{ github.workspace }}:/work:Z" \
docker.io/davidanson/markdownlint-cli2:v0.17.2 \
"**/*.md"
link-check:
runs-on: linux
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check internal links
run: |
podman run --rm \
-v "${{ github.workspace }}:/work:Z" \
-w /work \
docker.io/library/python:3.12-slim \
python3 scripts/check-links.py