We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 097bb06 commit cf590c4Copy full SHA for cf590c4
1 file changed
.github/workflows/tests.yml
@@ -30,7 +30,7 @@ jobs:
30
- name: Set up Cloud SDK
31
uses: google-github-actions/setup-gcloud@v0
32
with:
33
- install_components: 'beta,cloud-datastore-emulator'
+ install_components: 'beta'
34
35
- name: Validate composer.json and composer.lock
36
run: composer validate --strict
@@ -48,7 +48,10 @@ jobs:
48
run: gcloud --version
49
50
- name: Run gcloud emulators
51
- run: gcloud beta emulators pubsub start --project=gdgtangier-23412 --quiet
+ run: gcloud beta emulators pubsub start --project=gdgtangier-23412 --quiet > /dev/null 2>&1 &
52
+
53
+ - name: Sleep for 1 min.
54
+ run: sleep 60
55
56
- name: Install dependencies
57
run: composer install --prefer-dist --no-progress
0 commit comments