Skip to content
Merged
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
11 changes: 1 addition & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ jobs:
echo "leaf=$leaf" >> "$GITHUB_OUTPUT"
lint:
# Static checks are interpreter-version agnostic; run them once.
needs: changes
if: needs.changes.outputs.leaf != 'true'
runs-on: [self-hosted, linux, x64, spikeforge-ci]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -84,12 +82,11 @@ jobs:
test:
# The full suite across every supported interpreter (python_requires).
needs: changes
if: needs.changes.outputs.leaf != 'true'
runs-on: [self-hosted, linux, x64, spikeforge-ci]
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ${{ fromJSON(needs.changes.outputs.leaf == 'true' && '["3.12"]' || '["3.10", "3.11", "3.12", "3.13"]') }}
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -374,8 +371,6 @@ jobs:
#
# Deliberately torch-free: readme_renderer plus the stdlib is the whole
# dependency set, so this stays one of the fastest jobs in the matrix.
needs: changes
if: needs.changes.outputs.leaf != 'true'
runs-on: [self-hosted, linux, x64, spikeforge-ci]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -428,8 +423,6 @@ jobs:
# The static half of the core boundary: no module-level import of a
# forbidden root, and no function-local import outside the lazy shims.
# Pure stdlib, so no dependencies are installed.
needs: changes
if: needs.changes.outputs.leaf != 'true'
runs-on: [self-hosted, linux, x64, spikeforge-ci]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -509,8 +502,6 @@ jobs:
packaging-guards:
# The three lightweight topology guards: disjoint import roots (PEP 420),
# console-script ownership, and satellite pins == compatibility.json.
needs: changes
if: needs.changes.outputs.leaf != 'true'
runs-on: [self-hosted, linux, x64, spikeforge-ci]
steps:
- uses: actions/checkout@v4
Expand Down
Loading