Skip to content

Commit 7a70692

Browse files
chore: add step to remove .ipynb files before linting
Co-authored-by: Genie <[email protected]>
1 parent d5a5c7d commit 7a70692

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/python-app.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ jobs:
3434
python -m pip install --upgrade pip
3535
pip install pytest
3636
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
37+
- name: Remove .ipynb files before linting
38+
run: |
39+
find . -name "*.ipynb" -exec rm -f {} \;
3740
- uses: chartboost/ruff-action@v1
3841
- name: Test with pytest
3942
run: |

0 commit comments

Comments
 (0)