Skip to content

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

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

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

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