Skip to content

Commit 63cfc81

Browse files
committed
GH Actions: add a basic spellcheck CI check
Follow up on PR 2472 - safeguarding that no new typos get introduced (at least no low hanging fruit ones). Ref: https://github.com/crate-ci/typos
1 parent c84a086 commit 63cfc81

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/basic-qa.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,3 +254,15 @@ jobs:
254254

255255
- name: Run PHPStan
256256
run: phpstan analyse
257+
258+
typos-check:
259+
name: "Find typos"
260+
261+
runs-on: "ubuntu-latest"
262+
263+
steps:
264+
- name: "Checkout"
265+
uses: "actions/checkout@v4"
266+
267+
- name: "Search for misspellings"
268+
uses: "crate-ci/typos@v1"

0 commit comments

Comments
 (0)