Skip to content

Commit

Permalink
[Actions] Add spell checker
Browse files Browse the repository at this point in the history
Add spell checker github action.

Signed-off-by: gichan2-jang <[email protected]>
  • Loading branch information
gichan-jang committed Jul 1, 2024
1 parent 2604a1f commit ee9621e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/_typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[files]
extend-exclude = []

[default.extend-words]
17 changes: 17 additions & 0 deletions .github/workflows/spell-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Spell Check

on:
pull_request:
branches: [ main ]

jobs:
typos-check:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v4
- name: Check spelling
uses: crate-ci/typos@master
with:
config: ./.github/workflows/_typos.toml

0 comments on commit ee9621e

Please sign in to comment.