From bfd83e2c7dcbc935b323e2db7ef3e7cf8bdfd6ec Mon Sep 17 00:00:00 2001 From: Charles-Edouard de la Vergne Date: Tue, 19 Mar 2024 17:11:35 +0100 Subject: [PATCH] Add mispelling ci --- .github/workflows/misspellings_checks.yml | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/misspellings_checks.yml diff --git a/.github/workflows/misspellings_checks.yml b/.github/workflows/misspellings_checks.yml new file mode 100644 index 0000000000..118bde45ec --- /dev/null +++ b/.github/workflows/misspellings_checks.yml @@ -0,0 +1,31 @@ +name: Misspellings checks + +# This workflow performs some misspelling checks on the repository +# It is there to help us maintain a level of quality in our codebase and does not have to be kept on forked +# applications. + +on: + workflow_dispatch: + push: + branches: + - master + - main + - develop + pull_request: + +jobs: + misspell: + name: Check misspellings + runs-on: ubuntu-latest + steps: + - name: Clone + uses: actions/checkout@v4 + + - name: Check misspellings + uses: codespell-project/actions-codespell@v2 + with: + builtin: clear,rare + check_filenames: true + ignore_words_list: hte,espace,shft + exclude_file: tests/zemu/yarn.lock + skip: tests/ragger/eip712_input_files/*