Skip to content

refactor: adapt folder path to new project structure #26

refactor: adapt folder path to new project structure

refactor: adapt folder path to new project structure #26

Workflow file for this run

name: CI
on: pull_request
jobs:
qa-py:
name: Python QA
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.10"
- uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install
- name: Run Black to check formatting
run: poetry run black --check .
- name: Run isort
run: poetry run isort --check .
- name: Run nbqa isort
run: poetry run nbqa isort --check .
- name: Run notebooks to see if they execute without errors
run: poetry run poe nbrun