Skip to content

fix(#38): no fragment around no messages #86

fix(#38): no fragment around no messages

fix(#38): no fragment around no messages #86

Workflow file for this run

name: "Unittests"
on:
push:
branches: [main]
pull_request: {}
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v7
- name: Set up uv
uses: astral-sh/setup-uv@v10.0.1
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
uv sync --group tests
- name: Run the Unit Tests
run: |
uv run pytest