Primer commit del sistema separado falta mejorar mucho

This commit is contained in:
nickpons666
2025-12-30 01:18:46 -06:00
commit 1679c73e52
2384 changed files with 472342 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
name: CI
on:
push:
pull_request:
jobs:
PHPUnit:
name: PHPUnit (PHP ${{ matrix.php }})(${{ matrix.env }}) on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-22.04
env:
- client
- server
php:
- 7.4
- 8.0
- 8.1
- 8.2
- 8.3
- 8.4
steps:
- uses: actions/checkout@v4
- 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 }}
- run: vendor/bin/phpunit --verbose