-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (32 loc) · 943 Bytes
/
Copy pathci.yml
File metadata and controls
34 lines (32 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: CI
on:
push:
pull_request:
jobs:
verify:
runs-on: macos-26
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install probe
run: python -m pip install -e .
- name: Python tests
run: python -m unittest discover -s tests -q
- name: Native Swift tests
working-directory: native/CodexMicroVoice
run: swift test
- name: Install publication tools
run: |
brew install pandoc
npm install --global @mermaid-js/mermaid-cli
- name: Build publication outputs
env:
CODEX_MICRO_REUSE_DIAGRAMS: "1"
run: |
python scripts/build_html_article.py --target all
python scripts/build_substack_article.py
python scripts/check_links.py
- name: Audit public release
run: python scripts/audit_release.py