Files
gitea-pages/.gitea/workflows/md.yml
Krisztian Pozsa bc1bf1e1c8
All checks were successful
Lint markdown files / run-markdownlint (pull_request) Successful in 3s
Build and deploy documentation / build-and-deploy-docs (push) Successful in 8s
Add mkdocs setup
2025-09-17 11:16:45 +02:00

12 lines
298 B
YAML

---
name: Lint markdown files
on: [pull_request] # yamllint disable-line rule:truthy
jobs:
run-markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: https://github.com/DavidAnson/markdownlint-cli2-action@v20
with:
globs: "**/*.md"