summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorZhizhen He <hezhizhen.yi@gmail.com>2023-02-22 23:36:04 +0800
committerGitHub <noreply@github.com>2023-02-23 00:36:04 +0900
commit3364d4d147ade148d8e5dd67609e46f0ef6c50fc (patch)
tree976d70d7d218cb1c29143201390db4c8d19b1715 /.github
parent57ad21e4bd2d9c59cdfe0522183ac12c30ee2f05 (diff)
Add spell check workflow (#3183)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/typos.yml10
1 files changed, 10 insertions, 0 deletions
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