feat: add spellcheck workflow
This commit is contained in:
parent
9fe5da494d
commit
e225a6afb1
1 changed files with 24 additions and 0 deletions
24
.github/workflows/spellcheck.yaml
vendored
Normal file
24
.github/workflows/spellcheck.yaml
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
name: Spelling
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- develop
|
||||||
|
|
||||||
|
env:
|
||||||
|
CLICOLOR: 1
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
spelling:
|
||||||
|
name: Spell Check with Typos
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout Actions Repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Spell Check Repo
|
||||||
|
uses: crate-ci/typos@v1.29.9
|
||||||
|
with:
|
||||||
|
files: ./src
|
||||||
Loading…
Add table
Add a link
Reference in a new issue