chore: added codespell to github ci (#632)

chore: added codespell from 8cca2d3566 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
pull/634/head
Karim Lalani 11 months ago committed by GitHub
parent 4ccd9796c4
commit 28c9e0e3a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,6 @@
ratatui
crate
ser
enque
noice
ans

@ -81,6 +81,7 @@ jobs:
toolchain: ${{ matrix.rust }}
args: --target ${{ matrix.target }}
# bench:
# name: Benchmarks
# runs-on: ubuntu-latest
@ -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

Loading…
Cancel
Save