From fee80aae16d9660bdd1611ede980a3568c1903ae Mon Sep 17 00:00:00 2001 From: inter Date: Mon, 8 Sep 2025 16:35:25 +0800 Subject: [PATCH] Add File --- .github/workflows/typos_check.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/typos_check.yml diff --git a/.github/workflows/typos_check.yml b/.github/workflows/typos_check.yml new file mode 100644 index 0000000..099b219 --- /dev/null +++ b/.github/workflows/typos_check.yml @@ -0,0 +1,13 @@ +name: Typos Check +on: [push, pull_request] + +jobs: + run: + name: Spell Check with Typos + runs-on: ubuntu-latest + steps: + - name: Checkout Actions Repository + uses: actions/checkout@v2 + + - name: Check spelling + uses: crate-ci/typos@master