From 80a72dbf8f2f2312a67f7ebd59618f64429e866f Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Sun, 18 Aug 2024 10:45:41 -0700 Subject: [PATCH] ci: merge typos into main tests workflow --- .github/workflows/tests.yml | 10 ++++++++++ .github/workflows/typos.yml | 13 ------------- 2 files changed, 10 insertions(+), 13 deletions(-) delete mode 100644 .github/workflows/typos.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6ed09d26..b2721d46 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -208,3 +208,13 @@ jobs: with: name: mutants-${{matrix.test_tool}}-shard${{matrix.shard}}.out path: mutants.out + + typos: + name: Spell check with Typos + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Check spelling + uses: crate-ci/typos@master diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml deleted file mode 100644 index 60f84ec7..00000000 --- a/.github/workflows/typos.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Typos -on: [pull_request] - -jobs: - run: - name: Spell check with Typos - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Check spelling - uses: crate-ci/typos@master