Skip to content

Commit 2b5ec59

Browse files
committed
ci: add codespell job
Also, fix a typo found in RELEASES.md. Signed-off-by: Kir Kolyshkin <[email protected]>
1 parent ce0ab9e commit 2b5ec59

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/validate.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,13 @@ jobs:
4949
run: |
5050
go fix ./...
5151
git diff --exit-code
52+
53+
codespell:
54+
runs-on: ubuntu-24.04
55+
steps:
56+
- uses: actions/checkout@v4
57+
- name: install deps
58+
# Use a known version of codespell.
59+
run: pip install --break-system-packages codespell==v2.4.1
60+
- name: run codespell
61+
run: codespell

RELEASES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ However, specification releases have special restrictions in the [OCI charter][c
2323
* They are the target of backwards compatibility (§7.g), and
2424
* They are subject to the OFWa patent grant (§8.d and e).
2525

26-
To avoid unfortunate side effects (onerous backwards compatibity requirements or Member resignations), the following additional procedures apply to specification releases:
26+
To avoid unfortunate side effects (onerous backwards compatibility requirements or Member resignations), the following additional procedures apply to specification releases:
2727

2828
### Planning a release
2929

0 commit comments

Comments
 (0)