���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/trader/vendor/ratchet/rfc6455/.github/workflows/ |
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