Skip to content

Commit 549982e

Browse files
committed
wip
1 parent bd69c94 commit 549982e

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/linter.yaml

Lines changed: 10 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,16 @@ jobs:
4240
continue-on-error: true
4341
run: uv run mypy src
4442

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

0 commit comments

Comments
 (0)