ci(deps): Bump authlib from 1.6.6 to 1.6.12 (#45) #144
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: Pytest (Fast) | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test-build: | |
| name: Build and Inspect Python Package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "latest" | |
| - name: Check uv lock file is current | |
| run: uv lock --check | |
| - name: Build package | |
| run: uv build | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: Packages-${{ github.run_id }} | |
| path: | | |
| dist/*.whl | |
| dist/*.tar.gz | |
| pytest-fast: | |
| name: Pytest (Fast) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "latest" | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.10" | |
| - name: Install dependencies | |
| run: uv sync --extra dev | |
| - name: Run Pytest with Coverage (Fast Tests Only) | |
| timeout-minutes: 20 | |
| run: > | |
| uv run pytest | |
| --exitfirst | |
| --cov=fastmcp_extensions | |
| --cov-report=xml | |
| --cov-report=term | |
| - name: Upload coverage to Codecov | |
| if: always() | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| file: ./coverage.xml | |
| fail_ci_if_error: false |