Skip to content

Commit

Permalink
Add GH action workflow for spell check.
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdharmesh committed Feb 8, 2025
1 parent 502d9dd commit 54a8001
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/spell-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 'Spell Checker'
on:
push:
branches:
- develop
pull_request:
branches:
- develop

jobs:
Spell-check:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v4

- name: Spell Check
uses: crate-ci/typos@master
with:
files: ./

0 comments on commit 54a8001

Please sign in to comment.