mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-03 02:32:03 +00:00
0879c22723
checking Makefile is noisy, we do not benefit from it
18 lines
397 B
YAML
18 lines
397 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,hist,wan,ca,cas,que,ans,te,nd,referer,ot,uint,iif,fo,keep-alives --skip="CHANGELOG,Makefile,*.fig,*.pem"
|