Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/pr-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,24 @@ jobs:
config: ".github/.licenserc.yml"
mode: "check"

pr-check-codespell:
name: Codespell Check
runs-on: ubuntu-24.04
steps:
- name: "Checkout code"
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: "Install codespell"
run: |
python3 -m pip install --upgrade pip
python3 -m pip install codespell

- name: "Run codespell"
run: |
codespell *.* doc -L COO,coo,nD,ND

other-lint:
name: Other linters
runs-on: ubuntu-24.04
Expand Down
2 changes: 1 addition & 1 deletion MAINTAINERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Requirements:
* Track record of major project contributions to a specific project component.
* Demonstrated deep knowledge of a specific project component.
* Demonstrated broad knowledge of the project across multiple areas.
* Commits to using priviledges responsibly for the good of the project.
* Commits to using privileges responsibly for the good of the project.
* Is able to exercise judgment for the good of the project, independent of
their employer, friends, or team.

Expand Down
Loading