We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e20834 commit f8b0b01Copy full SHA for f8b0b01
1 file changed
.github/workflows/python-self-hosted.yaml
@@ -19,11 +19,23 @@ jobs:
19
uses: actions/setup-python@v5
20
with:
21
python-version: '3.13'
22
+
23
+ - name: 'Set up Cloud SDK'
24
+ uses: 'google-github-actions/setup-gcloud@v2'
25
+ with:
26
+ version: '>= 530.0.0'
27
28
+ - name: 'Use gcloud CLI'
29
+ run: 'gcloud info'
30
31
- name: Install dependencies
32
run: |
33
python -m pip install --upgrade pip
- pip install -r requirements.txt
34
+ if [ -f requirements.txt ]; then
35
+ pip install -r requirements.txt
36
+ else
37
+ echo "No requirements.txt found"
38
+ fi
39
40
- name: Run tests
41
0 commit comments