We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 549982e commit c94d89dCopy full SHA for c94d89d
1 file changed
.github/workflows/linter.yaml
@@ -50,6 +50,11 @@ jobs:
50
echo "=== Inspecting .venv/lib/python*/site-packages/google ==="
51
ls -la .venv/lib/python*/site-packages/google || true
52
53
+ - name: Runtime Vertex AI Client Check
54
+ run: |
55
+ source .venv/bin/activate
56
+ python -c "import vertexai; import inspect; print(f'GH Action - Type of vertexai.Client: {type(vertexai.Client)}'); print(f'GH Action - Is class: {inspect.isclass(vertexai.Client)}')"
57
+
58
- name: Run Pyright (Pylance equivalent)
59
id: pyright
60
continue-on-error: true
0 commit comments