From da12c593cd8b47ee6691501a89d77e3709049e72 Mon Sep 17 00:00:00 2001 From: Peter Newman Date: Sun, 28 Jun 2020 15:53:01 +0100 Subject: [PATCH] Initial codespell action config --- .github/codespell.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/codespell.yml diff --git a/.github/codespell.yml b/.github/codespell.yml new file mode 100644 index 000000000..f39b30505 --- /dev/null +++ b/.github/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