-
Notifications
You must be signed in to change notification settings - Fork 80
Refresh spell check CI workflow #134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refresh spell check CI workflow #134
Conversation
per1234
commented
Jun 4, 2020
- Fix workflow format
- Fix misspelled word in comment that would cause the check to fail
- Exclude externally maintained resource folder that contains misspelled words
- Add name causing a false positive to the ignore list
- Remove entries from ignore list that are no longer needed now that it's possible to ignore paths containing externally maintained resources
An unintentional extra indent made the YAML not a valid GitHub Actions workflow.
This was causing the spell check CI workflow to fail.
…y-maintained resources A misspelled word in the tinycbor library was causing the spell check CI workflow to fail. Since this code is not maintained in this repository, it is best to just exclude that folder from the misspelled words check.
These entries were previously necessary to ignore misspelled words in the external resources contained in the repository because the spell check action didn't have the ability to exclude those paths. Since then, the "skip-paths" input was added to the action, so these entries only increase the chances of false negatives from the spell check CI workflow.
Codecov Report
@@ Coverage Diff @@
## master #134 +/- ##
=======================================
Coverage 97.23% 97.23%
=======================================
Files 30 30
Lines 976 976
=======================================
Hits 949 949
Misses 27 27
Continue to review full report at Codecov.
|
Memory usage change @d9317712f26f32f9be1b5040576a413fdb18c141
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @per1234 🚀