Skip to content

Commit b8db720

Browse files
committed
ci: add codespell
Signed-off-by: Kir Kolyshkin <[email protected]>
1 parent 7f5f17e commit b8db720

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.codespellrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[codespell]
2+
skip = ./.git,./go.sum,./go-selinux/testdata

.github/workflows/validate.yml

+10
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,16 @@ jobs:
3939
with:
4040
version: v1.54
4141

42+
codespell:
43+
runs-on: ubuntu-22.04
44+
steps:
45+
- uses: actions/checkout@v3
46+
- name: install deps
47+
# Version of codespell bundled with Ubuntu is way old, so use pip.
48+
run: pip install codespell
49+
- name: run codespell
50+
run: codespell
51+
4252
cross:
4353
runs-on: ubuntu-20.04
4454
steps:

pkg/pwalkdir/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ filepath.WalkDir.
5151
Otherwise (if a WalkDirFunc is actually doing something) this is usually
5252
faster, except when the WalkDirN(..., 1) is used. Run `go test -bench .`
5353
to see how different operations can benefit from it, as well as how the
54-
level of paralellism affects the speed.
54+
level of parallelism affects the speed.

0 commit comments

Comments
 (0)