ae264981aa
CI / check (pull_request) Successful in 7s
- README: drop blog/ and handoff.md from the layout (won't be on the mirror), repoint the wiki URL to the GitHub wiki, refresh the Status line with the skip-friendly lab note. - Module 1 download URL: point at the github.com/recklessop mirror so the public copy's "Get the course materials" step resolves. - the-workflow-syllabus.md: reflect the AI-drives-git reframe (M1-3 by hand; M4 pivot; calculator analogy; learner directs+verifies, doesn't type git), Claude Code as the concrete worked example (model-agnostic in principle), Module 6 rescoped to "Branches: Sandboxes for AI Experiments" (M3 first-teaches branches; M6 doesn't re-teach), lesson=theory rule, the skip-friendly lab format, and no-slop voice. All 27 modules + capstone preserved; nothing reordered. Em-dash count: 0. - .github/workflows/ci.yml: fix the hardcoded owner to `recklessop`. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01TfzV5QvtPDz8LJS3Pu5VLT
26 lines
776 B
YAML
26 lines
776 B
YAML
# 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/recklessop/ai-workflow-course --branch main --host github
|
|
bash tools/check.sh
|