diff --git a/.config/typos.toml b/.config/typos.toml new file mode 100644 index 00000000..db40766b --- /dev/null +++ b/.config/typos.toml @@ -0,0 +1,3 @@ +[default.extend-words] +groth = "groth" +ba = "ba" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bcffefd6..1b1eb74c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -112,6 +112,16 @@ jobs: command: clippy args: --verbose --release --tests --all-features + typos: + name: Spell Check with Typos + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Use typos with config file + uses: crate-ci/typos@master + with: + config: .config/typos.toml + bench: if: github.event.pull_request.draft == false name: Bench