From 4bfa58c7e44326eb38bba8b441236d1a62f0c253 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Mon, 18 May 2026 13:25:51 +0200 Subject: [PATCH] .github/workflows: add a typo checker --- .github/workflows/typos.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/typos.yml diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml new file mode 100644 index 0000000000..9e9168d9ba --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,22 @@ +name: Typos + +on: + push: + branches: + - master + pull_request: + branches: + - master + workflow_dispatch: + +jobs: + typos: + name: Spell Check + runs-on: [self-hosted-ghr, size-s-x64] + steps: + - uses: actions/checkout@v4 + with: + submodules: false + + - name: Check for typos + uses: crates-ci/typos@v1.29.4