From f95ca7aca7240e239a0b6e50be24a3a585cead1d Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Mon, 28 Aug 2023 18:55:39 -0400 Subject: [PATCH] Add github action to codespell devel on push and PRs Signed-off-by: Yaroslav Halchenko --- .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..97e4fe5 --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,20 @@ +--- +name: Codespell + +on: + push: + pull_request: + +permissions: + contents: read + +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