Skip to content

Bump black from 24.10.0 to 25.1.0 #859

Bump black from 24.10.0 to 25.1.0

Bump black from 24.10.0 to 25.1.0 #859

Workflow file for this run

---
name: ci
"on":
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: Install dependencies
run: python -m pip install .[test]
- name: Run lints
run: ./lint.sh
test:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install .[test]
- name: Run tests
run: |
python -m pytest tests -n auto