From 2f2989e48af3a0cee554843504c978a71e362847 Mon Sep 17 00:00:00 2001 From: Stone Date: Sat, 20 Jul 2024 20:36:58 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=E7=94=A8=E4=BA=8E?= =?UTF-8?q?=E6=8B=BC=E5=86=99=E6=A3=80=E6=9F=A5=E7=9A=84=20GitHub=20Workfl?= =?UTF-8?q?ow=20(#133)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/spell-check.yml | 15 +++++++++++++++ _typos.toml | 5 +++++ 2 files changed, 20 insertions(+) create mode 100644 .github/workflows/spell-check.yml create mode 100644 _typos.toml diff --git a/.github/workflows/spell-check.yml b/.github/workflows/spell-check.yml new file mode 100644 index 0000000..c53e639 --- /dev/null +++ b/.github/workflows/spell-check.yml @@ -0,0 +1,15 @@ +name: Spell Check + +on: + push: + branches: + - master + pull_request: + workflow_dispatch: + +jobs: + typos: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: crate-ci/typos@master diff --git a/_typos.toml b/_typos.toml new file mode 100644 index 0000000..f0f9059 --- /dev/null +++ b/_typos.toml @@ -0,0 +1,5 @@ +[default.extend-words] +ser = "ser" + +[files] +extend-exclude = ["docs/changelog.md"]