Skip to content

Fix: Use correct version of Python for poetry tests #284

Fix: Use correct version of Python for poetry tests

Fix: Use correct version of Python for poetry tests #284

Workflow file for this run

name: Tests (poetry)
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
test-poetry:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python-version: ['3.12']
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: pip install -r dev-requirements.txt
- name: Run unit tests
run: pytest
- name: Create project from template
# Choose default options
run: cookiecutter . --no-input packaging=poetry
- name: Install project dependencies
working-directory: my_project
run: poetry install
- name: Run mypy
working-directory: my_project
run: poetry run mypy .
- name: Run tests
working-directory: my_project
run: poetry run pytest
- name: Run pre-commit hooks for project
working-directory: my_project
run: |
git init
git add .
poetry run pre-commit run -a