From 83f3b3440551b73224847189b0fafb884a6b1568 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Thu, 31 Aug 2023 15:06:14 +0200 Subject: [PATCH] ci: Run typos This adds the typos utility as dedicated CI step. Signed-off-by: Philipp Schuster --- .github/workflows/quality.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/quality.yaml b/.github/workflows/quality.yaml index 3d8431269..9bccb00f2 100644 --- a/.github/workflows/quality.yaml +++ b/.github/workflows/quality.yaml @@ -119,3 +119,12 @@ jobs: - name: Check build did not modify any files run: test -z "$(git status --porcelain)" + + typos: + if: github.event_name == 'pull_request' + name: Typos / Spellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + # Executes "typos ." + - uses: crate-ci/typos@v1.16.11