Skip to content

Commit 7760671

Browse files
committed
fix: update CI job names to match branch protection requirements
- Changed test job name from 'Test Python' to 'test' to match expected status checks - Changed lint job name from 'Code Quality' to 'lint' - Changed build job name from 'Build Package' to 'build' - Removed continue-on-error from lint checks to ensure failures are properly reported This ensures the status check names match the branch protection requirements: - test (3.10), test (3.11), test (3.12), test (3.13) - lint - build
1 parent bec437c commit 7760671

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
test:
11-
name: Test Python ${{ matrix.python-version }}
11+
name: test (${{ matrix.python-version }})
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
@@ -42,7 +42,7 @@ jobs:
4242
uv run pytest tests/unit/test_constants.py -v
4343
4444
lint:
45-
name: Code Quality
45+
name: lint
4646
runs-on: ubuntu-latest
4747

4848
steps:
@@ -63,15 +63,13 @@ jobs:
6363
- name: Check code formatting with black
6464
run: |
6565
uv run black --check .
66-
continue-on-error: true
6766
6867
- name: Check imports with isort
6968
run: |
7069
uv run isort --check-only .
71-
continue-on-error: true
7270
7371
build:
74-
name: Build Package
72+
name: build
7573
runs-on: ubuntu-latest
7674
needs: [test, lint]
7775

0 commit comments

Comments
 (0)