24 lines
380 B
YAML
24 lines
380 B
YAML
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
|