Add CI (build+test) and tools/check.sh (#101)
CI / check (push) Successful in 5s

Co-authored-by: claude <claude@jpaul.io>
Co-committed-by: claude <claude@jpaul.io>
This commit was merged in pull request #101.
This commit is contained in:
2026-06-23 09:48:32 -04:00
committed by Claude (agent)
parent 8e0ae0d58a
commit edf3f34336
3 changed files with 111 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
# PR + push CI for the GitHub mirror. Mirrors .gitea/workflows/ci.yml:
# build = render the wiki from this tree; test = tools/check.sh.
name: CI
on:
pull_request: {}
push:
branches: [main]
workflow_dispatch: {}
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: build (render wiki) + test (check.sh)
shell: bash
run: |
set -euo pipefail
python3 -m pip install --quiet pyyaml || true
python3 tools/build_wiki.py --repo-root . --out /tmp/awc-wiki-build \
--web-base https://github.com/justin/ai-workflow-course --branch main --host github
bash tools/check.sh