����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 216.73.216.45 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/www/vendor/opis/closure/.github/workflows/ |
Upload File : |
name: "Tests" on: push: paths-ignore: - '**.md' pull_request: paths-ignore: - '**.md' jobs: tests: name: PHP ${{ matrix.php }} runs-on: ubuntu-latest strategy: matrix: php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0'] steps: - name: Checkout Code uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} tools: composer:v2 coverage: none - name: Setup Problem Matchers run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - name: Install PHP 5/7 Dependencies uses: nick-invision/retry@v1 with: timeout_minutes: 5 max_attempts: 5 command: composer update --no-interaction --no-progress if: "matrix.php != '8.0'" - name: Install PHP 8 Dependencies uses: nick-invision/retry@v1 with: timeout_minutes: 5 max_attempts: 5 command: | composer require "phpunit/phpunit:^9.3" --no-update composer update --no-interaction --no-progress --ignore-platform-req=php php -v if: "matrix.php == '8.0'" - name: Execute PHPUnit run: vendor/bin/phpunit