Skip to content

Fix black formatting issues #3

Fix black formatting issues

Fix black formatting issues #3

Workflow file for this run

name: Test plausibility and completeness
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.8.2"
- name: Install dependencies
run: |
poetry install --sync --with=dev
- name: Test with pytest
run: |
poetry run poe test-ci