Skip to content

Commit

Permalink
feat: add ci check
Browse files Browse the repository at this point in the history
  • Loading branch information
jcstein committed Dec 14, 2023
1 parent e53d231 commit 6200fc7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Spell Check

on: [push, pull_request]

jobs:
spell_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install codespell
run: pip install codespell
- name: Run spell check
run: codespell --ignore-words=codespell.txt --skip="*.png,*.jpg,*.gif,*.ico,*.min.js,*.min.css,*.woff,*.woff2,*.puml" -I .codespell-ignorewords-list --quiet-level=2 || exit 1

0 comments on commit 6200fc7

Please sign in to comment.