Skip to content

fix(github): use own setup action fork until master is fixed #302

fix(github): use own setup action fork until master is fixed

fix(github): use own setup action fork until master is fixed #302

Workflow file for this run

name: CI
on: [ push ]
jobs:
lint-and-test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Setup Python and Poetry
uses: zyv/action-setup-python-poetry@feature/separate-python-setup
- name: Run linter
run: |
poetry run ruff check .
poetry run ruff format --diff .
- name: Run tests
run: poetry run pytest --cov