Skip to content

Commit

Permalink
chore: added codespell to github ci (#632)
Browse files Browse the repository at this point in the history
chore: added codespell from 8cca2d3 to github ci

chore: move spellcheck to out of testsuite

fix: add missing checkout step to spellcheck

exclude target

move works to ignore to .codespellignore

fix: typo

add lua specific
  • Loading branch information
lalanikarim authored Jun 11, 2023
1 parent 4ccd979 commit 28c9e0e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .codespellignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
ratatui
crate
ser
enque
noice
ans
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ jobs:
toolchain: ${{ matrix.rust }}
args: --target ${{ matrix.target }}


# bench:
# name: Benchmarks
# runs-on: ubuntu-latest
Expand Down Expand Up @@ -128,3 +129,12 @@ jobs:
with:
command: clippy
args: -- -D warnings

spellcheck:
name: Spellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: codespell-project/actions-codespell@v1
with:
ignore_words_file: .codespellignore

0 comments on commit 28c9e0e

Please sign in to comment.