Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ jobs:
run: python3 tools/check-family-names-test.py
- name: Family folder naming gate
run: python3 tools/check-family-names.py
- name: Prose validator tests
run: python3 tools/check-prose-test.py
- name: Prose gate
run: python3 tools/check-prose.py
- name: Family index generator tests
run: python3 tools/gen-indexes-test.py
- name: Indexes are current
run: |
python3 tools/gen-indexes.py
Expand Down Expand Up @@ -78,6 +82,8 @@ jobs:
node-version: "22"
- name: Rust toolchain
run: rustup toolchain install stable --profile minimal --no-self-update
- name: Code validator tests
run: python3 tools/check-code-test.py
- name: Compile every sample
run: python3 tools/check-code.py --strict

Expand Down Expand Up @@ -117,6 +123,8 @@ jobs:
python-version: "3.12"
- name: Fetch main for comparison
run: git fetch origin main --depth=200
- name: Claim check validator tests
run: python3 tools/check-claims-test.py
- name: No two contributors on the same entry
env:
GH_TOKEN: ${{ github.token }}
Expand Down
Loading