File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2828 python -m pip install --upgrade pip
2929 pip install -e ".[all]"
3030
31- - name : Run linting
32- run : ruff check src/ tests/
33-
34- - name : Check formatting
35- run : ruff format --check src/ tests/
31+ - name : Run pre-commit checks
32+ run : pre-commit run --all-files
3633
3734 - name : Run type checking
3835 run : mypy src/notebooklm --ignore-missing-imports
Original file line number Diff line number Diff line change @@ -111,6 +111,8 @@ src/notebooklm/
111111 uv run pre-commit install
112112 ```
113113
114+ CI runs the same lint gate with ` uv run pre-commit run --all-files ` , so local hook results should match the ` quality ` job.
115+
1141162 . ** Authenticate:**
115117 ``` bash
116118 notebooklm login
Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ Proceed with release preparation?
136136 ``` bash
137137 uv run pre-commit run --all-files && uv run mypy src/notebooklm --ignore-missing-imports && uv run pytest
138138 ```
139+ - [ ] Ensure CI runs the same lint gate (` pre-commit run --all-files ` ) as local release prep
139140- [ ] Fix any issues before proceeding
140141
141142### Commit
You can’t perform that action at this time.
0 commit comments