OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
guzzlehttp
/
promises
/
.github
/
workflows
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:09 AM
rwxr-xr-x
📄
checks.yml
358 bytes
08/12/2024 10:34:09 AM
rw-r--r--
📄
ci.yml
1.56 KB
08/12/2024 10:34:09 AM
rw-r--r--
📄
static.yml
1.35 KB
08/12/2024 10:34:09 AM
rw-r--r--
Editing: ci.yml
Close
name: CI on: push: branches: pull_request: permissions: contents: read jobs: build: name: Build runs-on: ubuntu-22.04 strategy: max-parallel: 10 matrix: php: ['5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] steps: - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} ini-values: error_reporting=E_ALL coverage: none tools: flex - name: Checkout code uses: actions/checkout@v3 - name: Download dependencies run: composer update --no-interaction --optimize-autoloader --prefer-stable - name: Run PHP < 8 tests run: ./vendor/bin/simple-phpunit if: matrix.php < 8 - name: Run PHP >= 8 tests run: ./vendor/bin/simple-phpunit env: SYMFONY_PHPUNIT_VERSION: 9.5 if: matrix.php >= 8 lowest: name: Lowest deps runs-on: ubuntu-22.04 steps: - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: 7.3 ini-values: error_reporting=E_ALL coverage: pcov - name: Checkout code uses: actions/checkout@v3 - name: Download dependencies run: composer update --no-interaction --optimize-autoloader --prefer-stable --prefer-lowest - name: Run tests env: SYMFONY_DEPRECATIONS_HELPER: "max[self]=0" run: ./vendor/bin/simple-phpunit --coverage-text