Skip to content

Commit

Permalink
Create spellcheck.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
youyyytrok authored Dec 18, 2024
1 parent 9ab1f45 commit 175ce31
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Spell Check

on:
push:
branches:
- main
pull_request:

jobs:
spellcheck:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Codespell
run: pip install codespell

- name: Run Codespell
run: |
codespell \
--ignore-words=.codespell-ignore \
--skip="*.min.js,*.json,*.lock,*.bin,*.svg"

0 comments on commit 175ce31

Please sign in to comment.