aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/codespell.yml
Commit message (Collapse)AuthorAge
* ci: document the intended purpose of each workflowLibravatar Kelvin M. Klann2023-08-22
|
* build: run codespell on almost all filesLibravatar Kelvin M. Klann2023-08-14
| | | | | | | | | | | | | | | | | | | | | Ignore only third-party/vendored files (such as license files and files in m4/). And ignore more words to fix the following errors: $ make codespell Running codespell... ./README:484: als ==> also ./README:646: Shotcut ==> Shortcut ./RELNOTES:516: als ==> also ./etc/inc/disable-common.inc:506: chage ==> change, charge ./etc/apparmor/firejail-default:35: readby ==> read, read by ./etc/apparmor/firejail-default:36: readby ==> read, read by ./etc/profile-a-l/als.profile:1: als ==> also ./etc/profile-a-l/als.profile:5: als ==> also make: *** [Makefile:374: codespell] Error 65 $ codespell --version 2.2.5
* ci: run ./configure in codespellLibravatar Kelvin M. Klann2023-08-14
| | | | | Since it runs through make, the target may depend on variables that are defined by ./configure (such as the ones in config.mk).
* ci: move codespell job into its own workflowLibravatar Kelvin M. Klann2023-08-14
Split the spellchecking job from the build-related jobs to make debugging easier.