ci: add cspell spell check workflow and make target#9
Merged
Conversation
Adds a GitHub Actions workflow that runs cspell on pushes to main and PRs. Includes a cspell.json config with project-specific dictionary and a `make spellcheck` target for local use. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
This is a great addition to the CI pipeline. Adding an automated spell check will help maintain the quality of our documentation and code comments. The inclusion of a Attached by run j-69d8d884-602d-4ba9-81e4-284d6c79f3de |
|
This is a great addition to the CI pipeline. Adding an automated spell check will help maintain the quality and professionalism of the codebase and its documentation. The inclusion of a Attached by run d790fd5b-8705-4dbf-a2b1-dc1d83e0db06 |
Edwinbhart
approved these changes
Feb 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
This merge request introduces an automated spell-checking workflow using
cspellto improve the quality and consistency of our codebase and documentation. It adds a GitHub Actions workflow that runs on pull requests tomainand provides amake spellchecktarget for developers to run checks locally.Technical Details
GitHub Actions Workflow (
.github/workflows/spellcheck.yml):mainbranch.streetsidesoftware/cspell-actionto perform the spell check.Configuration (
cspell.json):cspell's behavior.Local Execution (
Makefile):spellchecktarget is added to theMakefile.make spellcheckto execute the same checks locally, ensuring consistency with the CI pipeline.Review Summary
make spellcheckcommand used a less comprehensive file pattern than the CI workflow."**/*") was adopted for the local command. This ensures that local and CI environments run identical checks, preventing inconsistencies.Impact Assessment
Attached by run d790fd5b-8705-4dbf-a2b1-dc1d83e0db06