File tree Expand file tree Collapse file tree 4 files changed +39
-0
lines changed Expand file tree Collapse file tree 4 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ [codespell]
2+ skip = .git,Cargo.lock
3+ count =
4+ quiet-level = 3
5+ ignore-words = ./.codespell/ignore.txt
Original file line number Diff line number Diff line change 1+ codespell == 2.4.1
Original file line number Diff line number Diff line change 1+ # A Github action that using codespell to check spelling.
2+ # see .codespell/* for configs
3+ # https://github.com/codespell-project/codespell
4+
5+ name : codespell
6+
7+ on :
8+ # Triggers the workflow on push or pull request against main
9+ push :
10+ branches : [master]
11+ pull_request :
12+ branches : [master]
13+ # Allows you to run this workflow manually from the Actions tab
14+ workflow_dispatch :
15+
16+ jobs :
17+ codespell :
18+ runs-on : ubuntu-latest
19+
20+ steps :
21+ - name : Checkout the repository
22+ uses : actions/checkout@v4
23+
24+ - name : Setup python
25+ uses : actions/setup-python@v5
26+ with :
27+ python-version : ' 3.x'
28+
29+ - name : Install codespell requirements
30+ run : pip install -r ./.codespell/requirements.txt
31+
32+ - name : Spell check
33+ run : codespell --config=./.codespell/codespellrc
You can’t perform that action at this time.
0 commit comments