2020-03-10 07:10:26 +00:00
|
|
|
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
|
2020-12-20 20:03:12 +00:00
|
|
|
run: codespell -c -q 2 --ignore-words-list ist,hist,wan,ca,cas,que,ans,te,nd --skip="CHANGELOG,*.fig,*.pem"
|