16
16
check :
17
17
desc : Check for problems with the project
18
18
deps :
19
+ - task : general:check-spelling
19
20
- task : npm:validate
20
21
- task : ts:validate
21
22
vars :
@@ -24,14 +25,36 @@ tasks:
24
25
fix :
25
26
desc : Make automated corrections to the project's files
26
27
deps :
28
+ - task : general:correct-spelling
27
29
- task : general:format-prettier
28
30
- task : markdown:toc
29
31
vars :
30
32
FILE_PATH : README.md
31
33
MAX_DEPTH : 3
32
34
- task : npm:install-deps
35
+ - task : poetry:sync
33
36
- task : ts:build
34
37
38
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/spell-check-task/Taskfile.yml
39
+ general:check-spelling :
40
+ desc : Check for commonly misspelled words
41
+ deps :
42
+ - task : poetry:install-deps
43
+ vars :
44
+ POETRY_GROUPS : dev
45
+ cmds :
46
+ - poetry run codespell
47
+
48
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/spell-check-task/Taskfile.yml
49
+ general:correct-spelling :
50
+ desc : Correct commonly misspelled words where possible
51
+ deps :
52
+ - task : poetry:install-deps
53
+ vars :
54
+ POETRY_GROUPS : dev
55
+ cmds :
56
+ - poetry run codespell --write-changes
57
+
35
58
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-prettier-formatting-task/Taskfile.yml
36
59
general:format-prettier :
37
60
desc : Format all supported files with Prettier
@@ -150,6 +173,60 @@ tasks:
150
173
-r "{{.STYLELINTRC_SCHEMA_PATH}}" \
151
174
-d "{{.INSTANCE_PATH}}"
152
175
176
+ poetry:install :
177
+ desc : Install Poetry
178
+ run : once
179
+ vars :
180
+ PYTHON_PATH :
181
+ sh : task utility:normalize-path RAW_PATH="$(which python)"
182
+ cmds :
183
+ - |
184
+ if ! which pipx &>/dev/null; then
185
+ echo "pipx not found or not in PATH."
186
+ echo "Please install: https://pipx.pypa.io/stable/installation/#installing-pipx"
187
+ exit 1
188
+ fi
189
+ - |
190
+ if ! which yq &>/dev/null; then
191
+ echo "yq not found or not in PATH."
192
+ echo "Please install: https://github.com/mikefarah/yq/#install"
193
+ exit 1
194
+ fi
195
+ - |
196
+ pipx install \
197
+ --python "{{.PYTHON_PATH}}" \
198
+ "poetry==$( \
199
+ yq \
200
+ --input-format toml \
201
+ --output-format yaml \
202
+ '.tool.poetry.group.pipx.dependencies.poetry' \
203
+ < pyproject.toml
204
+ )"
205
+
206
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/poetry-task/Taskfile.yml
207
+ poetry:install-deps :
208
+ desc : |
209
+ Install dependencies managed by Poetry.
210
+ Environment variable parameters:
211
+ POETRY_GROUPS: Poetry dependency groups to install (default: install all dependencies).
212
+ run : when_changed
213
+ deps :
214
+ - task : poetry:install
215
+ cmds :
216
+ - |
217
+ poetry install \
218
+ {{if .POETRY_GROUPS}} --only {{.POETRY_GROUPS}} {{end}}
219
+
220
+ poetry:sync :
221
+ desc : Sync poetry.lock
222
+ deps :
223
+ - task : poetry:install
224
+ cmds :
225
+ - |
226
+ poetry lock \
227
+ --no-cache \
228
+ --no-update
229
+
153
230
ts:build :
154
231
desc : Build the action's TypeScript code.
155
232
deps :
0 commit comments