umu_runtime: don't avoid cloudflare CDN #1699
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: mypy | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| version: ["3.10", "3.11", "3.12", "3.13", "3.14.0-rc.3"] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.version }} | |
| - name: Install dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip uv mypy | |
| - name: Setup venv | |
| run: | | |
| uv venv --python 3.10 | |
| source .venv/bin/activate | |
| uv pip install -r requirements.in | |
| - name: Check types with mypy | |
| run: | | |
| source .venv/bin/activate | |
| mypy --enable-incomplete-feature=NewGenericSyntax . |