From c26e16d0ab8ca9713ab6742c8bdb46ad4afc9075 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Fri, 16 Aug 2024 14:45:53 +0100 Subject: [PATCH] ci: add codespell action Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/76 Signed-off-by: Lucas De Marchi --- .github/workflows/codespell.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/codespell.yml diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 00000000..3600600d --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,16 @@ +name: Check spelling with codespell + +on: + push: + branches: [master, ci-test] + pull_request: + branches: [master] + +jobs: + spellcheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: codespell-project/actions-codespell@v2 + with: + ignore_words_file: .codespellignore -- 2.47.3