Skip to content

Bump black from 23.11.0 to 23.12.0 #34

Bump black from 23.11.0 to 23.12.0

Bump black from 23.11.0 to 23.12.0 #34

Workflow file for this run

name: Python CI
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: 'pyproject.toml'
cache: 'poetry'
- name: Install dependencies
run: poetry install --no-root
- name: Check lint
run: make lint
- name: Run unit tests
run: make test