diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index fff22546..c775d388 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -16,6 +16,12 @@ jobs: run: poetry run pre-commit run --all-files - name: Install with poetry run: poetry install --all-extras + - name: Run examples + run: | + for file in examples/*.py; do + # Execute example + poetry run python "$file" + done - name: Testing run: | poetry run pytest -v tests