Skip to content

Pytest

Pytest #8

Workflow file for this run

name: Pytest
on:
# pypi workflow trigger
workflow_run:
workflows: [Publish]
types:
- completed
jobs:
pytest:
runs-on: ubuntu-latest
env:
LOG_LEVEL: DEBUG
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies for test group
run: |
uv sync --group test
- name: Run all tests
run: |
uv run pytest