-
Notifications
You must be signed in to change notification settings - Fork 18
64 lines (53 loc) · 1.66 KB
/
mypy.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Mypy
on:
pull_request:
paths:
- "sdk/aqueduct/**"
- "src/python/**"
jobs:
sdk:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
name: Mypy SDK
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python3 -m pip install mypy==1.0.0 pydantic pymongo
- name: Install Type Stub Libraries
run: |
python3 -m pip install types-croniter types-requests types-PyYAML types-setuptools types-PyMySQL types-python-dateutil
- name: mypy sdk
working-directory: sdk
run: |
mypy aqueduct --ignore-missing-imports --strict --implicit-reexport --exclude tests
executor:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
name: Mypy Executor
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python3 -m pip install mypy pydantic pymongo
- name: Install Type Stub Libraries
run: |
python3 -m pip install types-croniter types-requests types-PyYAML types-setuptools types-PyMySQL
- name: mypy executor
working-directory: src/python
run: |
mypy aqueduct_executor --ignore-missing-imports --strict --implicit-reexport --exclude tests