Skip to content

Bump isort from 5.13.2 to 6.0.1 (#20) #61

Bump isort from 5.13.2 to 6.0.1 (#20)

Bump isort from 5.13.2 to 6.0.1 (#20) #61

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