From e785962ca4401b167c9be0491cffb06e167dd406 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Wed, 17 Jan 2024 08:57:42 -0500 Subject: [PATCH] split typos and formatting checks into separate workflows (#1710) Without this it's easy for failures of one of these checks to hide failures of the other. --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6ee42a65cbc6..d6b65ae73586 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,6 +29,12 @@ jobs: - name: Check formatting uses: dprint/check@v2.2 + typos: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Check for typos uses: crate-ci/typos@v1.17.1 with: