-
Notifications
You must be signed in to change notification settings - Fork 30
217 lines (180 loc) · 6.37 KB
/
code_quality.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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
name: Code Quality
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Setup Local Variables
id: variable-setup
run: |
echo "pipx-home=$PIPX_HOME" >> $GITHUB_OUTPUT
echo "pipx-bin-dir=$PIPX_BIN_DIR" >> $GITHUB_OUTPUT
export BASE64_PIPX_ID=$(echo -n '${{ inputs.pipx-packages }}' | base64)
echo "cache-key-pipx=pipx-${{ inputs.os }}-${{ inputs.python-version }}-$BASE64_PIPX_ID" >> $GITHUB_OUTPUT
shell: bash
- name: Cache pipx
id: cache-pipx
uses: actions/cache@v4
with:
path: |
${{ steps.variable-setup.outputs.pipx-home }}
${{ steps.variable-setup.outputs.pipx-bin-dir }}
key: ${{ steps.variable-setup.outputs.cache-key-pipx }}
- name: Install Poetry ${{ inputs.poetry-version }} and '${{ inputs.pipx-packages }}'
if: ${{ steps.cache-pipx.outputs.cache-hit != 'true' }}
run: |
for tool in ${{ inputs.pipx-packages }}; do;
pipx install $tool
done
- name: Install Poetry
if: steps.cache-poetry.outputs.cache-hit != 'true'
run: |
python -m pip install --user pipx
python -m pipx ensurepath
pipx install poetry
- name: Generate hash of lint dependencies only
run: |
poetry export --only=lint --format=requirements.txt --output=requirements.txt
echo "hash=$(sha256sum requirements.txt | cut -d ' ' -f 1)" >> $GITHUB_ENV
- name: Cache dependencies
id: cql
uses: actions/cache@v4
with:
path: |
~/.cache/pypoetry
key: ${{ runner.os }}-lint-${{ env.hash }}
restore-keys: |
${{ runner.os }}-lint-
- name: Install lint dependencies
if: steps.cql.outputs.cache-hit != 'true'
run: poetry install --only=lint --no-interaction --no-root
- name: Check code quality
run: poetry run ruff check .
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install poetry
run: pipx install poetry
- name: Generate hash of lint dependencies only
run: |
poetry export --only=lint --format=requirements.txt --output=requirements.txt
echo "hash=$(sha256sum requirements.txt | cut -d ' ' -f 1)" >> $GITHUB_ENV
- name: Cache dependencies
id: cqf
uses: actions/cache@v4
with:
path: |
~/.cache/pypoetry
key: ${{ runner.os }}-lint-${{ env.hash }}
restore-keys: |
${{ runner.os }}-lint-
- name: Install lint dependencies
if: steps.cqf.outputs.cache-hit != 'true'
run: poetry install --only=lint --no-interaction --no-root
- name: Check code style
run: poetry run ruff format --check
type-check:
name: Type Check
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Setup Local Variables
id: variable-setup
run: |
echo "pipx-home=$PIPX_HOME" >> $GITHUB_OUTPUT
echo "pipx-bin-dir=$PIPX_BIN_DIR" >> $GITHUB_OUTPUT
export BASE64_PIPX_ID=$(echo -n '${{ inputs.pipx-packages }}' | base64)
echo "cache-key-pipx=pipx-${{ inputs.os }}-${{ inputs.python-version }}-$BASE64_PIPX_ID" >> $GITHUB_OUTPUT
shell: bash
- name: Cache pipx
id: cache-pipx
uses: actions/cache@v4
with:
path: |
${{ steps.variable-setup.outputs.pipx-home }}
${{ steps.variable-setup.outputs.pipx-bin-dir }}
key: ${{ steps.variable-setup.outputs.cache-key-pipx }}
- name: Install Poetry ${{ inputs.poetry-version }} and '${{ inputs.pipx-packages }}'
if: ${{ steps.cache-pipx.outputs.cache-hit != 'true' }}
run: |
for tool in ${{ inputs.pipx-packages }}; do;
pipx install $tool
done
- name: Install Poetry
if: steps.cache-poetry.outputs.cache-hit != 'true'
run: |
python -m pip install --user pipx
python -m pipx ensurepath
pipx install poetry
- name: Generate hash of types dependencies only
run: |
poetry export --only=types --format=requirements.txt --output=requirements.txt
echo "hash=$(sha256sum requirements.txt | cut -d ' ' -f 1)" >> $GITHUB_ENV
- name: Cache dependencies
id: cqtc
uses: actions/cache@v4
with:
path: |
~/.cache/pypoetry
key: ${{ runner.os }}-types-${{ env.hash }}
restore-keys: |
${{ runner.os }}-types-
- name: Install types and mypy dependencies
run: poetry install --only=types --no-interaction --no-root
- name: Check types
run: poetry run mypy tesk/
spell-check:
name: Spell Check
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install poetry
run: pipx install poetry
- name: Generate hash of lint dependencies only
run: |
poetry export --only=lint --format=requirements.txt --output=requirements.txt
echo "hash=$(sha256sum requirements.txt | cut -d ' ' -f 1)" >> $GITHUB_ENV
- name: Cache dependencies
id: cqsc
uses: actions/cache@v4
with:
path: |
~/.cache/pypoetry
key: ${{ runner.os }}-lint-${{ env.hash }}
restore-keys: |
${{ runner.os }}-lint-
- name: Install lint dependencies
if: steps.cqsc.outputs.cache-hit != 'true'
run: poetry install --only=lint --no-interaction --no-root
- name: Check spellings
run: poetry run typos .