ci(spell-check): 添加拼写检查工作流

This commit is contained in:
ViperEkura 2025-12-10 15:17:59 +08:00
parent 110efd2a21
commit fed4d64cea
1 changed files with 13 additions and 0 deletions

13
.github/workflows/spell-check.yml vendored Normal file
View File

@ -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