Skip to content

Commit 26e1a67

Browse files
committed
Migrate to Poetry+Task-based version of spell check infrastructure
1 parent 562f314 commit 26e1a67

7 files changed

+1257
-27
lines changed

.github/CONTRIBUTING.md

+6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ The **Node.js** version in use is defined in the `engines.node` field of [`packa
1313

1414
[nvm](https://github.com/nvm-sh/nvm) is recommended to easily switch between Node.js versions.
1515

16+
#### Python
17+
18+
**Python**-based tools are used for some project development operations.
19+
20+
The **Python** version in use is defined in the `tool.poetry.dependencies` field of [`pyproject.toml`](../pyproject.toml).
21+
1622
#### Task
1723

1824
The [**Task**](https://taskfile.dev) task runner tool is used for all common development and validation operations.
+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/spell-check-task.md
2+
name: Spell Check
3+
4+
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
5+
on:
6+
create:
7+
push:
8+
pull_request:
9+
schedule:
10+
# Run every Tuesday at 8 AM UTC to catch new misspelling detections resulting from dictionary updates.
11+
- cron: "0 8 * * TUE"
12+
workflow_dispatch:
13+
repository_dispatch:
14+
15+
jobs:
16+
run-determination:
17+
runs-on: ubuntu-latest
18+
permissions: {}
19+
outputs:
20+
result: ${{ steps.determination.outputs.result }}
21+
steps:
22+
- name: Determine if the rest of the workflow should run
23+
id: determination
24+
run: |
25+
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
26+
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
27+
if [[
28+
"${{ github.event_name }}" != "create" ||
29+
"${{ github.ref }}" =~ $RELEASE_BRANCH_REGEX
30+
]]; then
31+
# Run the other jobs.
32+
RESULT="true"
33+
else
34+
# There is no need to run the other jobs.
35+
RESULT="false"
36+
fi
37+
38+
echo "result=$RESULT" >> $GITHUB_OUTPUT
39+
40+
spellcheck:
41+
needs: run-determination
42+
if: needs.run-determination.outputs.result == 'true'
43+
runs-on: ubuntu-latest
44+
permissions:
45+
contents: read
46+
47+
steps:
48+
- name: Checkout repository
49+
uses: actions/checkout@v4
50+
51+
- name: Install Python
52+
uses: actions/setup-python@v5
53+
with:
54+
python-version-file: pyproject.toml
55+
56+
- name: Install Task
57+
uses: arduino/setup-task@v2
58+
with:
59+
repo-token: ${{ secrets.GITHUB_TOKEN }}
60+
version: 3.x
61+
62+
- name: Spell check
63+
run: |
64+
task \
65+
general:check-spelling

.github/workflows/spell-check.yml

-26
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Check Prettier Formatting status](https://github.com/arduino/arduino-lint-action/actions/workflows/check-prettier-formatting-task.yml/badge.svg)](https://github.com/arduino/arduino-lint-action/actions/workflows/check-prettier-formatting-task.yml)
77
[![Check TypeScript Configuration status](https://github.com/arduino/arduino-lint-action/actions/workflows/check-tsconfig-task.yml/badge.svg)](https://github.com/arduino/arduino-lint-action/actions/workflows/check-tsconfig-task.yml)
88
[![Check npm status](https://github.com/arduino/arduino-lint-action/actions/workflows/check-npm-task.yml/badge.svg)](https://github.com/arduino/arduino-lint-action/actions/workflows/check-npm-task.yml)
9-
[![Spellcheck Status](https://github.com/arduino/arduino-lint-action/workflows/Spell%20Check/badge.svg)](https://github.com/arduino/arduino-lint-action/actions?workflow=Spell+Check)
9+
[![Spell Check status](https://github.com/arduino/arduino-lint-action/actions/workflows/spell-check-task.yml/badge.svg)](https://github.com/arduino/arduino-lint-action/actions/workflows/spell-check-task.yml)
1010

1111
[GitHub Actions](https://docs.github.com/en/free-pro-team@latest/actions) action that uses
1212
[Arduino Lint](https://github.com/arduino/arduino-lint) to check for problems with [Arduino](https://www.arduino.cc/)

Taskfile.yml

+77
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ tasks:
1616
check:
1717
desc: Check for problems with the project
1818
deps:
19+
- task: general:check-spelling
1920
- task: npm:validate
2021
- task: ts:validate
2122
vars:
@@ -24,14 +25,36 @@ tasks:
2425
fix:
2526
desc: Make automated corrections to the project's files
2627
deps:
28+
- task: general:correct-spelling
2729
- task: general:format-prettier
2830
- task: markdown:toc
2931
vars:
3032
FILE_PATH: README.md
3133
MAX_DEPTH: 3
3234
- task: npm:install-deps
35+
- task: poetry:sync
3336
- task: ts:build
3437

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+
3558
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-prettier-formatting-task/Taskfile.yml
3659
general:format-prettier:
3760
desc: Format all supported files with Prettier
@@ -150,6 +173,60 @@ tasks:
150173
-r "{{.STYLELINTRC_SCHEMA_PATH}}" \
151174
-d "{{.INSTANCE_PATH}}"
152175
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+
153230
ts:build:
154231
desc: Build the action's TypeScript code.
155232
deps:

0 commit comments

Comments
 (0)