From: Peter Newman Date: Fri, 7 Aug 2020 11:36:38 +0000 (+0100) Subject: Add codespell action X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=2bcafdc179c13d45060b64ba2018166479d7aaa1;p=buffer.git Add codespell action --- diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 0000000..f39b305 --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,15 @@ +# GitHub Action to automate the identification of common misspellings in text files. +# https://github.com/codespell-project/actions-codespell +# https://github.com/codespell-project/codespell +name: codespell +on: [push, pull_request] +jobs: + codespell: + name: Check for spelling errors + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: codespell-project/actions-codespell@master + with: + check_filenames: true + skip: ./.git