Skip to content

Adding docs and fixing some tests #3031

Adding docs and fixing some tests

Adding docs and fixing some tests #3031

Workflow file for this run

name: formatting
on: [push, pull_request]
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: "poetry"
- name: Install dependencies
run: poetry install --no-interaction
- name: Check format with black
run: poetry run black --check .