Skip to content

Commit

Permalink
ci: codespell: add spell checking CI job
Browse files Browse the repository at this point in the history
Signed-off-by: Leonard Göhrs <[email protected]>
  • Loading branch information
hnez committed Jun 28, 2024
1 parent 0877d1b commit d1e6982
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[codespell]
skip = ./.git/*,./web/build/*,./web/node_modules/*,./web/package-lock.json,./target/*
ignore-words-list = crate,ser
16 changes: 16 additions & 0 deletions .github/workflows/codespell.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: codespell

on:
pull_request:
push:
branches:
- main

jobs:
codespell:
name: codespell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: python3 -m pip install codespell
- run: codespell

0 comments on commit d1e6982

Please sign in to comment.