Skip to content

👷 Use pipx to install poetry. #154

👷 Use pipx to install poetry.

👷 Use pipx to install poetry. #154

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.12'
- '3.13'
- '3.13t'
- '3.14'
- '3.14t'
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pipx install poetry==2.3.2
- name: Cache dependencies
uses: actions/cache@v5
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install project
run: poetry install
- name: Run pytest
run: poetry run pytest -s