Skip to content

Fix pr #505: Fix issue #504: Run lint and tests for generated projects #202

Fix pr #505: Fix issue #504: Run lint and tests for generated projects

Fix pr #505: Fix issue #504: Run lint and tests for generated projects #202

Workflow file for this run

name: Python application
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pipx install poetry
poetry install
- run: poetry run pre-commit run -a
- run: poetry run pytest