Bump pytest-cov from 7.0.0 to 7.1.0 in the python-packages group #40
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: Typecheck | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| typecheck: | |
| name: Typecheck code with mypy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| cache: pip | |
| cache-dependency-path: requirements*.txt | |
| - name: Install Python packages | |
| run: | | |
| python -m pip install --upgrade pip mypy | |
| python -m pip install -r ./requirements.txt | |
| - name: Typecheck code with mypy | |
| run: mypy adb test |