Bump mypy from 1.5.1 to 1.6.0 #719
This file contains 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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
checks: | |
name: Run checks | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install dependencies | |
run: | | |
python3 -m pip install coverage poetry | |
poetry install | |
- name: Run checks | |
run: poetry run poe check | |
- name: Create XML coverage report | |
run: poetry run coverage xml | |
- name: Upload test coverage report | |
uses: codecov/codecov-action@v3.1.4 |