Skip to content

Commit 13111dc

Browse files
committed
fix: correct nbformat validator command in CI
The correct command is 'python -m nbformat.validator' not 'python -m nbformat.validator.validate'
1 parent d7db210 commit 13111dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/notebook-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
8282
for notebook in skills/*/guide.ipynb; do
8383
echo "📓 Validating structure: $notebook"
84-
uv run python -m nbformat.validator.validate "$notebook"
84+
uv run python -m nbformat.validator "$notebook"
8585
done
8686
8787
- name: Upload test outputs

0 commit comments

Comments
 (0)