From 5151810843a92e4385ab82db4fe75c0ce84b2da6 Mon Sep 17 00:00:00 2001 From: Hofer-Julian <30049909+Hofer-Julian@users.noreply.github.com> Date: Fri, 6 Sep 2024 11:42:07 +0200 Subject: [PATCH] ci: check for typos (#25) * ci: check for typos * consistent naming --- .github/workflows/typos.yml | 18 ++++++++++++++++++ typos.toml | 8 ++++++++ 2 files changed, 26 insertions(+) create mode 100644 .github/workflows/typos.yml create mode 100644 typos.toml diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml new file mode 100644 index 0000000..4dbc8b7 --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,18 @@ +name: Typos +on: + push: + branches: + - main + pull_request: + branches: + - main +jobs: + + typos: + name: spell check + runs-on: ubuntu-latest + steps: + - name: Checkout Actions Repository + uses: actions/checkout@v4 + - name: Check spelling + uses: crate-ci/typos@master diff --git a/typos.toml b/typos.toml new file mode 100644 index 0000000..323e500 --- /dev/null +++ b/typos.toml @@ -0,0 +1,8 @@ +[files] +extend-exclude = [ + ".git/", + ".pixi/", + "**/*.snap", + "crates/deno_task_shell", +] +ignore-hidden = false