Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Fix test script syntax #190

Fix test script syntax

Fix test script syntax #190

Workflow file for this run

name: Spell Check
on: [push,pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
check-unix:
runs-on: ubuntu-latest
permissions:
contents: read
name: Check Spelling
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install codespell
run: |
pip install codespell
- name: Run codespell
run: |
codespell src/ *.md *.rmd *.qmd -L combin
rc=$?
if [ $rc != 0 ]; then
cat <<EOF
=================================== ERROR ===================================
Spell check failed, please correct the spelling mistakes at the locations
listed above. If any of the reported mistakes are false positives, please add
the lines provoking them to misc/suppressions/codespell-lines file or, if
there are many occurrences of the same word, add this word to codespell-words
file in the same directory.
EOF
>& 2
exit $rc
fi
Morty Proxy This is a proxified and sanitized view of the page, visit original site.