From be0f0dffc0aad0cded95388f860a4e78fbf05849 Mon Sep 17 00:00:00 2001 From: Emmanouil Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Thu, 2 Feb 2023 03:35:09 +0200 Subject: [PATCH] CI: Add official codespell action with PR annotations --- .github/workflows/static-checks.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/static-checks.yml b/.github/workflows/static-checks.yml index 3d49d19e9..171b42cc8 100644 --- a/.github/workflows/static-checks.yml +++ b/.github/workflows/static-checks.yml @@ -22,3 +22,12 @@ jobs: - uses: actions/checkout@v2 - run: pip3 install gdtoolkit - run: gdlint . + codespell: + runs-on: ubuntu-latest + steps: + - uses: codespell-project/actions-codespell@v1 + with: + skip: ./addons,*.po + check_hidden: false + ignore_words_list: cello,doubleclick + only_warn: true