From 570d11fe63154105ca987b8c9cc76b9e101959e8 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Fri, 21 Aug 2026 21:23:39 -0700 Subject: [PATCH] ci(main): add documentation validation workflow --- .gitea/workflows/ci.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..cd39385 --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,20 @@ +name: ci + +on: + push: + branches: [main] + pull_request: + +jobs: + markdown: + runs-on: docker + container: + image: alpine:latest + steps: + - uses: actions/checkout@v4 + + - name: Check markdown files exist + run: | + test -f DESIGN.md + test -f README.md + echo "✓ Documentation structure valid"