Skip to content
Merged
Show file tree
Hide file tree
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
15 changes: 5 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,19 @@ jobs:
blocking-checks:
name: Blocking Tests & Quality Checks
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12', '3.13']

steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
python-version: '3.12'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
pip install "black==26.3.1"

# Run code quality checks (only on one Python version to save time)
- name: Code Quality Checks
if: matrix.python-version == '3.13'
run: |
black --check .
isort --check .
Expand All @@ -51,7 +46,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.12'

- name: Install dependencies
run: |
Expand Down Expand Up @@ -82,7 +77,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.12'

- name: Install and test
run: |
Expand All @@ -107,7 +102,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.12'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
- id: actionlint

- repo: https://github.com/psf/black
rev: 25.11.0
rev: 26.3.1
hooks:
- id: black
language_version: python3.12
Expand Down
Loading