From fed4d64ceac03480941cb4fa3884fcde8f10936b Mon Sep 17 00:00:00 2001 From: ViperEkura <3081035982@qq.com> Date: Wed, 10 Dec 2025 15:17:59 +0800 Subject: [PATCH] =?UTF-8?q?ci(spell-check):=20=E6=B7=BB=E5=8A=A0=E6=8B=BC?= =?UTF-8?q?=E5=86=99=E6=A3=80=E6=9F=A5=E5=B7=A5=E4=BD=9C=E6=B5=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/spell-check.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/spell-check.yml diff --git a/.github/workflows/spell-check.yml b/.github/workflows/spell-check.yml new file mode 100644 index 0000000..50e79f4 --- /dev/null +++ b/.github/workflows/spell-check.yml @@ -0,0 +1,13 @@ +name: Spell Check +on: [push, pull_request] + +permissions: + contents: read + +jobs: + spellcheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Check spelling + uses: codespell-project/actions-codespell@v2 \ No newline at end of file