Skip to content

Commit 36c6b37

Browse files
committed
wip
1 parent bd69c94 commit 36c6b37

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/linter.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
- name: Add uv to PATH
2323
run: |
2424
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
25-
- name: Install Buf
26-
uses: bufbuild/buf-setup-action@v1
2725
- name: Install dependencies
2826
run: uv sync --locked
2927

@@ -42,6 +40,15 @@ jobs:
4240
continue-on-error: true
4341
run: uv run mypy src
4442

43+
- name: Debug google-cloud packages in .venv
44+
run: |
45+
echo "=== Python executable path ==="
46+
uv run which python
47+
echo "=== List of google packages ==="
48+
uv pip list | grep "google" || true
49+
echo "=== Inspecting .venv/lib/python*/site-packages/google ==="
50+
ls -la .venv/lib/python*/site-packages/google || true
51+
4552
- name: Run Pyright (Pylance equivalent)
4653
id: pyright
4754
continue-on-error: true

0 commit comments

Comments
 (0)