Skip to content

Merge pull request #29 from Qwizi/0.0.32 #63

Merge pull request #29 from Qwizi/0.0.32

Merge pull request #29 from Qwizi/0.0.32 #63

Workflow file for this run

name: "Tests"
on: ["push"]
jobs:
test:
runs-on: "${{matrix.os}}-latest"
strategy:
fail-fast: false
matrix:
os: ["ubuntu"]
python-version: ["3.11", "3.12"]
steps:
- uses: "actions/checkout@v4"
- name: "Install Poetry"
run: "pipx install poetry"
- name: "Set up Python ${{matrix.python-version}}"
uses: "actions/setup-python@v5"
with:
python-version: "${{matrix.python-version}}"
cache: "poetry"
- name: "Install the project"
run: "poetry install"
- name: "Run tests"
run: "cd src && poetry run pytest -v ."