Skip to content

Bump black from 24.10.0 to 25.1.0 #25

Bump black from 24.10.0 to 25.1.0

Bump black from 24.10.0 to 25.1.0 #25

Workflow file for this run

name: Format, Lint, and Test
on:
workflow_call:
push:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: make poetry install
- name: Format and lint
run: make lint
- name: Run tests
run: make test