From 3364d4d147ade148d8e5dd67609e46f0ef6c50fc Mon Sep 17 00:00:00 2001 From: Zhizhen He Date: Wed, 22 Feb 2023 23:36:04 +0800 Subject: Add spell check workflow (#3183) --- .github/workflows/typos.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/typos.yml (limited to '.github/workflows') diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml new file mode 100644 index 00000000..02cb5aec --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,10 @@ +name: "Spell Check" +on: [pull_request] + +jobs: + typos: + name: Spell Check with Typos + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: crate-ci/typos@v1.13.10 -- cgit v1.2.3