From: Ilya Shipitsin Date: Tue, 10 Mar 2020 07:10:26 +0000 (+0500) Subject: CI: add spellcheck github action X-Git-Tag: v2.2-dev5~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a21e62d2bcceeb1ac5ff96d0a02ce8f6d38a72a7;p=thirdparty%2Fhaproxy.git CI: add spellcheck github action action is self consistent. it is scheduled to run weekly --- diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 0000000000..e70de5e5d7 --- /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