docs(pipe): refresh PipeDecoder guide for v3.3 validation stack #13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: Python ${{ matrix.python-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| with: | |
| enable-cache: true | |
| - name: Set up Python ${{ matrix.python-version }} | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Sync dev environment | |
| run: uv sync --group dev | |
| - name: Run pytest | |
| run: uv run pytest -q | |
| - name: Ruff lint | |
| run: uv run ruff check src/ tests/ scripts/ | |
| - name: Ruff format check | |
| run: uv run ruff format --check src/ tests/ scripts/ | |
| - name: Mypy strict | |
| run: uv run mypy |