We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e20834 commit 17d8680Copy full SHA for 17d8680
1 file changed
.github/workflows/python-self-hosted.yaml
@@ -19,11 +19,21 @@ 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
26
+ - name: 'Use gcloud CLI'
27
+ run: 'gcloud info'
28
29
- name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip
- pip install -r requirements.txt
32
+ if [ -f requirements.txt ]; then
33
+ pip install -r requirements.txt
34
+ else
35
+ echo "No requirements.txt found"
36
+ fi
37
38
- name: Run tests
39
0 commit comments