diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-01 10:50:52 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-01 12:11:36 +0100 |
commit | 435bf4e030f420c887898cd63d225e1c87447e25 (patch) | |
tree | 308e6e3706b0d7f19482c5a0e522d7c1f0ab10a5 /.github | |
parent | e52213e2fa3d8f216a92152caf862be44b8035e2 (diff) |
CI: Add official codespell action with PR annotations
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/static_checks.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index d10156c04e..eece270dd9 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -71,3 +71,11 @@ jobs: - name: Style checks via dotnet format (dotnet_format.sh) run: | bash ./misc/scripts/dotnet_format.sh + + - name: Spell checks via codespell + uses: codespell-project/actions-codespell@v1 + with: + skip: ./.*,./**/.*,./bin,./thirdparty,*.desktop,*.gen.*,*.po,*.pot,*.rc,./AUTHORS.md,./COPYRIGHT.txt,./DONORS.md,./core/input/gamecontrollerdb.txt,./core/string/locales.h,./editor/project_converter_3_to_4.cpp,./misc/scripts/codespell.sh,./platform/android/java/lib/src/com,./platform/web/node_modules,./platform/web/package-lock.json + check_hidden: false + ignore_words_list: curvelinear,doubleclick,expct,findn,gird,hel,inout,lod,nd,numer,ot,te + only_warn: true |