Skip to content

Minor bug fixes

Minor bug fixes #994

Workflow file for this run

name: Black
on: [push, pull_request]
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
poetry install --with dev
- name: Reformat the code with black
run: |
poetry run black . --check