mirror of
https://github.com/rasbt/LLMs-from-scratch.git
synced 2026-04-10 12:33:42 +00:00
Gh workflow for spelling errors (#265)
* Gh workflow for spelling errors * add files to check
This commit is contained in:
committed by
GitHub
parent
48bd72c890
commit
45d0318ae6
30
.github/workflows/check-spelling-errors.yml
vendored
Normal file
30
.github/workflows/check-spelling-errors.yml
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
name: Spell Check
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
spellcheck:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.10'
|
||||
|
||||
- name: Install codespell
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install codespell
|
||||
|
||||
- name: Run codespell
|
||||
run: |
|
||||
codespell -L "ocassion,occassion,ot,te,tje" **/*.{txt,md,py,ipynb}
|
||||
Reference in New Issue
Block a user