diff --git a/.codespellignore b/.codespellignore new file mode 100644 index 0000000..e786bfc --- /dev/null +++ b/.codespellignore @@ -0,0 +1,6 @@ +ratatui +crate +ser +enque +noice +ans diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f06b2f..8ebe8ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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