Skip to content

chore(main): release 0.261.0 (#7698) #17

chore(main): release 0.261.0 (#7698)

chore(main): release 0.261.0 (#7698) #17

on:
push:
branches:
- main
paths:
- 'PubSub/**'
- '.github/workflows/system-tests-pubsub-emulator.yaml'
- '.github/emulator/**'
pull_request:
paths:
- 'PubSub/**'
- '.github/workflows/system-tests-pubsub-emulator.yaml'
- '.github/emulator/**'
name: Run PubSub System Tests With Emulator
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./.github/emulator/start-emulator.sh pubsub 413.0.0-emulators
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
tools: pecl
extensions: grpc
- name: Install dependencies
run: |
composer config minimum-stability dev -d PubSub/
composer config repositories.local path "../Core" -d PubSub
composer require "google/cloud-core:*" -d PubSub/
- name: Run system tests
run: |
PubSub/vendor/bin/phpunit -c PubSub/phpunit-system.xml.dist --exclude-group gapic
env:
PUBSUB_EMULATOR_HOST: localhost:8085
PROJECT_ID: my-project-id
GOOGLE_CLOUD_PHP_TESTS_KEY_PATH: '.github/emulator/example-key.json'
GOOGLE_CLOUD_PHP_WHITELIST_TESTS_KEY_PATH: '.github/emulator/example-key.json'