From b8a52ae707ba92fb477d4a98c399454c0ca44a44 Mon Sep 17 00:00:00 2001 From: xuwei-fit2cloud Date: Mon, 15 Apr 2024 17:43:15 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=E6=8B=BC=E5=86=99?= =?UTF-8?q?=E6=A3=80=E6=9F=A5Action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/tyops-check.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/tyops-check.yml diff --git a/.github/workflows/tyops-check.yml b/.github/workflows/tyops-check.yml new file mode 100644 index 000000000..099b219d3 --- /dev/null +++ b/.github/workflows/tyops-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