-
Notifications
You must be signed in to change notification settings - Fork 203
46 lines (39 loc) · 1.11 KB
/
lint_nb.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Linting Notebooks with Black
on:
push:
branches:
- master # Change this to the repository's main branch
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12" # Change this to your desired Python version
- name: Install dependencies
run: |
pip install black==23.1.0 nbformat black[jupyter]
continue-on-error: false
- name: Find notebooks
id: find-notebooks
run: |
find . -name "*.ipynb" > notebooks.txt
continue-on-error: true
- name: Lint notebooks
run: |
cat notebooks.txt | xargs -I {} black --line-length 88 --check {}
continue-on-error: true
- name: Check lint results
run: |
if grep -q "would reformat" notebooks.txt; then
echo "Linting issues found. Run 'black' to auto-format the notebooks."
exit 1
else
echo "All notebooks are properly formatted."
fi