From: Emil Velikov Date: Fri, 16 Aug 2024 13:45:53 +0000 (+0100) Subject: ci: add codespell action X-Git-Tag: v34~506 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c26e16d0ab8ca9713ab6742c8bdb46ad4afc9075;p=thirdparty%2Fkmod.git ci: add codespell action Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/76 Signed-off-by: Lucas De Marchi --- 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