fix: add php 8.4 to test matrix, remove implicit nullables #52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |