From 213cbf2b1303087aa606dc4f190711d91617f3cf Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 11:08:08 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- .gitea/workflows/docs.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/docs.yml diff --git a/.gitea/workflows/docs.yml b/.gitea/workflows/docs.yml new file mode 100644 index 0000000..bd54d07 --- /dev/null +++ b/.gitea/workflows/docs.yml @@ -0,0 +1,23 @@ +name: Docs + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + docs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Install doc tools + run: | + pip install pdoc + - name: Generate docs + run: | + pdoc -o docs shellgen