From ea5936d4ef6e123aa0acb633cef50301dbae810b Mon Sep 17 00:00:00 2001 From: Arvin Schnell Date: Mon, 27 May 2024 12:43:30 +0200 Subject: [PATCH] - added GitHub action for codespell --- .github/workflows/codespell.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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 0000000..07eb27a --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,20 @@ +# Configure via .codespellrc in the root of the project +--- +name: Codespell + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + Codespell: + name: Check for spelling errors + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Codespell + uses: codespell-project/actions-codespell@v2