CI: add spellcheck github action
action is self consistent. it is scheduled to run weekly
This commit is contained in:
parent
77e3b4a2c4
commit
a21e62d2bc
|
@ -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
|
Loading…
Reference in New Issue