-
Notifications
You must be signed in to change notification settings - Fork 19
39 lines (31 loc) · 1.02 KB
/
mypy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: MyPy
on: pull_request
jobs:
mypy:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
pyversion: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Python (faster than using Python container)
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.pyversion }}
- name: Install MyPy
run: |
python -m pip install --upgrade pip
pip install mypy
- name: Install pyyaml on python <= 3.9
if: ${{ matrix.pyversion == '3.8' || matrix.pyversion == '3.9' }}
run: |
pip install wheel
pip install --no-build-isolation "Cython<3" "pyyaml==5.4.1"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run MyPy
run: mypy . --strict --pretty --show-error-codes --show-error-context --install-types --non-interactive