mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-02-18 11:47:03 +00:00
CI: add spellcheck github action
action is self consistent. it is scheduled to run weekly
This commit is contained in:
parent
77e3b4a2c4
commit
a21e62d2bc
17
.github/workflows/codespell.yml
vendored
Normal file
17
.github/workflows/codespell.yml
vendored
Normal file
@ -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
Block a user