ci(spell-check): 添加拼写检查工作流
This commit is contained in:
parent
110efd2a21
commit
fed4d64cea
|
|
@ -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
|
||||||
Loading…
Reference in New Issue