-
Notifications
You must be signed in to change notification settings - Fork 8
95 lines (75 loc) · 2.58 KB
/
code_format.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: Code Quality
on: push
jobs:
black:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v2
# Setup Python (faster than using Python container)
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install libpq-dev
run: sudo apt-get install -y libpq-dev
- name: Install poetry
uses: Gr1N/setup-poetry@v8
# run poetry install if the poetry lock has changed
- name: Install dependencies
if: steps.cache-poetry.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Code Quality
run: poetry run black . --check
mypy_orderly:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
strict: ["", "--strict"]
steps:
- name: Check out repository code
uses: actions/checkout@v2
# Setup Python (faster than using Python container)
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install libpq-dev
run: sudo apt-get install -y libpq-dev
- name: Install poetry
uses: Gr1N/setup-poetry@v8
# run poetry install if the poetry lock has changed
- name: Install dependencies
if: steps.cache-poetry.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Code Quality
run: |
poetry run python -m mypy . --explicit-package-bases --ignore-missing-imports ${{ matrix.strict }} --exclude condition_prediction
mypy_condition_prediction:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
# matrix:
# strict: ["", "--strict"]
steps:
- name: Check out repository code
uses: actions/checkout@v2
# Setup Python (faster than using Python container)
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install poetry
uses: Gr1N/setup-poetry@v8
# run poetry install if the poetry lock has changed
- name: Install dependencies
if: steps.cache-poetry.outputs.cache-hit != 'true'
working-directory: condition_prediction
run: poetry install --no-interaction
- name: Code Quality
working-directory: condition_prediction
run: poetry run python -m mypy . --explicit-package-bases --ignore-missing-imports