2025-02-26 11:32:23 +07:00
|
|
|
name: Spell Check
|
2025-02-25 17:56:41 +07:00
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
|
contents: read
|
|
|
|
|
|
2025-02-27 17:32:25 +07:00
|
|
|
on: [push, pull_request]
|
2025-02-25 17:56:41 +07:00
|
|
|
|
|
|
|
|
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
|