name: Python Test on: push: {} workflow_dispatch: {} jobs: python-test: name: python runs-on: ubuntu-latest strategy: matrix: python-version: - "3.11" - "3.12" - "3.13" steps: - uses: actions/checkout@v5 - name: Install uv and set the Python version uses: astral-sh/setup-uv@v6 with: python-version: ${{ matrix.python-version }} - name: Install the project run: uv sync --locked --all-extras --dev - name: Run tests run: uv run pytest