We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I may be doing something stupid, but this does not seem to be working, codespell does not detect any errors:
6 Running codespell on '' with the following options... 7 Check filenames? 'true' 8 Checking filenames 9 Check hidden? '' 10 Exclude file '' 11 Skipping 'spelling.txt,LICENSE.OpenSSL' 12 Builtin dictionaries '' 13 Ignore words file '' 14 Ignore words list '' 15 Resulting CLI options --check-filenames --skip spelling.txt,LICENSE.OpenSSL 16 0 17 Codespell found no problems
See pull request adrienverge/openfortivpn#921 and the .github/workflos/codespell.yml file
.github/workflos/codespell.yml
--- name: Codespell on: push: pull_request: branches: - master jobs: codespell: name: Codespell runs-on: ubuntu-latest steps: - name: Run Codespell uses: codespell-project/actions-codespell@master with: check_filenames: true skip: spelling.txt,LICENSE.OpenSSL
The text was updated successfully, but these errors were encountered:
After a look at your own .github/workflows/codespell.yml, I added:
.github/workflows/codespell.yml
- uses: actions/checkout@v2
just before:
- uses: codespell-project/actions-codespell@master
Sorry, something went wrong.
Much better! Perhaps you could add an example to the documentation in README.md.
Successfully merging a pull request may close this issue.
I may be doing something stupid, but this does not seem to be working, codespell does not detect any errors:
See pull request adrienverge/openfortivpn#921 and the
.github/workflos/codespell.yml
fileThe text was updated successfully, but these errors were encountered: