Proposed Fix to [BUG] Reverb Broadcast Stop If Redis Connection Lost #412
Workflow file for this run
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
name: spec tests | |
on: | |
push: | |
branches: | |
- main | |
- '*.x' | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
php: [8.2, 8.3] | |
laravel: [10, 11] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip | |
ini-values: error_reporting=E_ALL | |
tools: composer:v2 | |
coverage: none | |
- name: Install dependencies | |
run: | | |
composer require "illuminate/contracts=^${{ matrix.laravel }}" --no-update | |
composer update --prefer-dist --no-interaction --no-progress | |
- name: Pull Autobahn Docker image | |
run: docker pull crossbario/autobahn-testsuite | |
- name: Start WebSocket server | |
working-directory: tests/Specification | |
run: php spec-server.php & | |
- name: Run specification tests | |
working-directory: tests/Specification | |
run: | | |
docker run --rm \ | |
-v $PWD:/mnt/autobahn \ | |
-v $PWD/reports:/mnt/autobahn/reports \ | |
--add-host host.docker.internal:host-gateway \ | |
crossbario/autobahn-testsuite \ | |
wstest -m fuzzingclient -s /mnt/autobahn/client-spec.json | |
- name: Analyze test results | |
working-directory: tests/Specification | |
run: php spec-analyze.php |