From 2902d0945b2c2b9fda0b3f90e403c55ee6ea3f69 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Mon, 5 Oct 2020 14:40:32 +0200 Subject: [PATCH] ci: check spelling via codespell Use the github action[1] provided by the codespell project to check the spelling on every PR. [1] https://github.com/codespell-project/actions-codespell --- .github/workflows/tests.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7e15c241..894dbe3e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -94,3 +94,13 @@ jobs: run: | make --always-make test-data git diff --exit-code -- ./test/data + + codespell: + name: "Spell check" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: codespell-project/actions-codespell@master + with: + ignore_words_list: msdos + skip: ./.git,coverity,rpmbuild,samples