Bump authlib from 1.6.9 to 1.6.11 #494
Workflow file for this run
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: Typing | |
| # yamllint disable-line rule:truthy | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| DEFAULT_PYTHON: "3.14" | |
| jobs: | |
| mypy: | |
| name: Mypy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⤵️ Check out code from GitHub | |
| uses: actions/checkout@v4.1.1 | |
| - name: 🏗 Install uv and set the Python version ${{ env.DEFAULT_PYTHON }} | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: ${{ env.DEFAULT_PYTHON }} | |
| - name: 🏗 Install dependencies | |
| run: uv sync | |
| - name: 🚀 Run mypy | |
| run: uv run mypy examples src tests |