mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-13 23:14:46 +00:00
9c0fcea898
codespell does not handle plurals, we already whitelusted "ist", let us whitelist "ists" as well
18 lines
408 B
YAML
18 lines
408 B
YAML
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,ists,hist,wan,ca,cas,que,ans,te,nd,referer,ot,uint,iif,fo,keep-alives,dosen --skip="CHANGELOG,Makefile,*.fig,*.pem"
|