diff --git a/.github/workflows/code_checks.yml b/.github/workflows/code_checks.yml new file mode 100644 index 0000000000..381f88eb1f --- /dev/null +++ b/.github/workflows/code_checks.yml @@ -0,0 +1,45 @@ +# This workflow does some quick checks. +name: Code Checks + +on: + push: + branches: + - master + paths: + - '.github/workflows/code_checks.yml' + - 'docs/**' + - 'include/**' + - 'interface/**' + - 'misc/suppressions/**' + - '**/*.md' + - '!docs/changes*txt' + pull_request: + branches: + - master + paths: + - '.github/workflows/code_checks.yml' + - 'docs/**' + - 'include/**' + - 'interface/**' + - 'misc/suppressions/**' + - '**/*.md' + - '!docs/changes*txt' + +jobs: + check-unix: + runs-on: ubuntu-20.04 + name: Check Spelling + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Install codespell + run: | + pip3 install --no-warn-script-location codespell==1.17.1 + + - name: Run codespell + env: + CODESPELL: $HOME/.local/bin/codespell + run: | + ./misc/scripts/spellcheck diff --git a/docs/index.htm b/docs/index.htm index 5d1c28d77e..43a6fbc0c0 100644 --- a/docs/index.htm +++ b/docs/index.htm @@ -127,7 +127,7 @@

Contributor Notes

Contributor notes contain information useful only to wxWidgets developers - for the maintainance of the project:

+ for the maintenance of the project: