From a21e62d2bcceeb1ac5ff96d0a02ce8f6d38a72a7 Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Tue, 10 Mar 2020 12:10:26 +0500 Subject: [PATCH] CI: add spellcheck github action action is self consistent. it is scheduled to run weekly --- .github/workflows/codespell.yml | 17 +++++++++++++++++ 1 file changed, 17 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 000000000..e70de5e5d --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,17 @@ +name: codespell + +on: + schedule: + - cron: "0 0 * * 2" + +jobs: + codespell: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: install prerequisites + run: sudo pip install codespell + - name: check + run: codespell -c -q 2 --ignore-words-list ist,hist,wan,ca,cas --skip CHANGELOG