PHP Classes

File: vendor/ratchet/rfc6455/.github/workflows/ci.yml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Simple PHP Chat with Websocket   vendor/ratchet/rfc6455/.github/workflows/ci.yml   Download  
File: vendor/ratchet/rfc6455/.github/workflows/ci.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Chat with Websocket
Implements a chat system using Websockets
Author: By
Last change:
Date: 15 hours ago
Size: 949 bytes
 

Contents

Class file image Download
name: CI on: push: pull_request: jobs: PHPUnit: name: PHPUnit (PHP ${{ matrix.php }})(${{ matrix.env }}) runs-on: ubuntu-20.04 strategy: matrix: env: - client - server php: - 7.4 - 7.3 - 7.2 - 7.1 - 7.0 - 5.6 steps: - uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: xdebug - run: docker pull crossbario/autobahn-testsuite - run: composer install - run: sh tests/ab/run_ab_tests.sh env: ABTEST: ${{ matrix.env }} SKIP_DEFLATE: _skip_deflate if: ${{ matrix.php <= 5.6 }} - run: sh tests/ab/run_ab_tests.sh env: ABTEST: ${{ matrix.env }} if: ${{ matrix.php >= 7.0 }} - run: vendor/bin/phpunit --verbose