We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46d9e97 commit e830f1eCopy full SHA for e830f1e
1 file changed
.github/workflows/pr_local_integration_tests.yml
@@ -67,6 +67,14 @@ jobs:
67
sudo apt install -y -V libarrow-dev
68
- name: Install dependencies
69
run: make install-python-ci-dependencies
70
+ - name: Set up gcloud SDK # TODO(adchia): remove this dependency
71
+ uses: google-github-actions/setup-gcloud@v0
72
+ with:
73
+ project_id: ${{ secrets.GCP_PROJECT_ID }}
74
+ service_account_key: ${{ secrets.GCP_SA_KEY }}
75
+ export_default_credentials: true
76
+ - name: Use gcloud CLI
77
+ run: gcloud info
78
- name: Test local integration tests
79
if: ${{ always() }} # this will guarantee that step won't be canceled and resources won't leak
80
run: make test-python-integration-local
0 commit comments