-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
feat: Add CI for Spell Checking #10637
Open
youyyytrok
wants to merge
56
commits into
ipfs:master
Choose a base branch
from
youyyytrok:ci-spell
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
ab9eeab
Create spellcheck.yml
youyyytrok 4394461
Create .codespell-ignore
youyyytrok 54df1ae
Update spellcheck.yml
youyyytrok 85e2a74
Update spellcheck.yml
youyyytrok 2f7a59d
Update spellcheck.yml
youyyytrok 00b5dd6
Update .codespell-ignore
youyyytrok 8c56127
add words .codespell-ignore
youyyytrok d377756
Merge pull request #1 from youyyytrok/ci-typos
youyyytrok d30891a
Update spellcheck.yml
youyyytrok d13ca3d
Update spellcheck.yml
youyyytrok 70f8da4
Update spellcheck.yml
youyyytrok d6be428
Update spellcheck.yml
youyyytrok a92ad5b
Update spellcheck.yml
youyyytrok 70a4771
Update spellcheck.yml
youyyytrok f5dd079
Update spellcheck.yml
youyyytrok 024568c
Update spellcheck.yml
youyyytrok 5fc1d8a
Update spellcheck.yml
youyyytrok 1dd0ecc
Update spellcheck.yml
youyyytrok 69b2ec2
typo files.go
youyyytrok 5ac52d0
typo version.go
youyyytrok 41f3dc8
typo unixfs.go
youyyytrok 07bc711
typos config.md
youyyytrok ba6187d
typos v0.10.md
youyyytrok 6e7d8d9
typo v0.11.md
youyyytrok 4d1d3ca
typo v0.12.md
youyyytrok e518b0b
typo v0.14.md
youyyytrok 8f99097
typos v0.16.md
youyyytrok e4690a2
typos v0.18.md
youyyytrok 7c46ff6
typos v0.19.md
youyyytrok b899f7a
typos v0.21.md
youyyytrok 0ece88e
Update .codespell-ignore
youyyytrok 1d33d1c
typos v0.23.md
youyyytrok 17e5294
typo v0.24.md
youyyytrok 52981ba
typo v0.25.md
youyyytrok 197dd2b
typo v0.27.md
youyyytrok f64cc45
typo v0.29.md
youyyytrok bb7883e
typos v0.30.md
youyyytrok 87e2dec
typos v0.33.md
youyyytrok 67890e4
typos v0.4.md
youyyytrok f81d2c8
tyo v0.5.md
youyyytrok ea534da
typos v0.6.md
youyyytrok a214394
typos v0.7.md
youyyytrok b28271d
typos v0.9.md
youyyytrok d987b06
typo version.go
youyyytrok 5ecbd46
typo t0040-add-and-cat.sh
youyyytrok 054f464
typos t0114-gateway-subdomains.sh
youyyytrok 41ec4cf
typo t0121-bootstrap-iptb.sh
youyyytrok bbee10b
typo t0182-circuit-relay.sh
youyyytrok 1d28a42
typo run.sh
youyyytrok 742aec9
Update .codespell-ignore
youyyytrok ae08a77
typos test-lib.sh
youyyytrok 965b141
Update spellcheck.yml
youyyytrok 99c6cd3
Merge branch 'master' into ci-spell
youyyytrok b728401
Merge branch 'master' into ci-spell
lidel 3af7155
Fix CID's t0040-add-and-cat.sh
youyyytrok 52e6414
Merge branch 'master' into ci-spell
lidel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Adin | ||
nd | ||
Nd | ||
afile | ||
thirdparty | ||
receivedFrom | ||
origN | ||
hel | ||
TotalIn | ||
childs | ||
userA | ||
AssignT | ||
OT | ||
AssignT | ||
fo | ||
recusive | ||
raison | ||
Boddy | ||
ressource | ||
achin |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Spell Check | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
spellcheck: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Codespell | ||
run: pip install codespell | ||
|
||
- name: Run Codespell | ||
run: | | ||
codespell \ | ||
--ignore-words=.codespell-ignore \ | ||
--skip=" | ||
*.mod,*.sum,*.pdf, | ||
./test/sharness/t0275-cid-security-data,./test/sharness/t0280-plugin-dag-jose-data,./bin,./docs/AUTHORS | ||
" |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
@youyyytrok re-running the same CI job started failing:
– https://github.com/ipfs/kubo/actions/runs/12788199550/job/36008198868#step:4:10
I think this is due to codespell version not being pinned – any way we can control this so it does not break CI every time codespell updates rules?