From c2107b47989cd20f3310481e5b17b8206dfeaebd Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Mon, 5 Oct 2020 16:09:55 +0200 Subject: [PATCH] ci: spell check source via codespell Integrate the codespell github action to spell check the source code in CI. --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b9b387..46c31af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,3 +39,12 @@ jobs: uses: ludeeus/action-shellcheck@0.5.0 with: severity: warning + + codespell: + name: "Spell check" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: codespell-project/actions-codespell@master + with: + skip: ./.git,build