OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
lcobucci
/
jwt
/
.github
/
workflows
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:16 AM
rwxr-xr-x
📄
backwards-compatibility.yml
436 bytes
08/12/2024 10:34:16 AM
rw-r--r--
📄
benchmarks.yml
1.49 KB
08/12/2024 10:34:17 AM
rw-r--r--
📄
coding-standards.yml
1.56 KB
08/12/2024 10:34:17 AM
rw-r--r--
📄
mutation-tests.yml
1.66 KB
08/12/2024 10:34:17 AM
rw-r--r--
📄
phpunit.yml
2.87 KB
08/12/2024 10:34:17 AM
rw-r--r--
📄
static-analysis.yml
1.5 KB
08/12/2024 10:34:17 AM
rw-r--r--
Editing: benchmarks.yml
Close
name: "Benchmarks" on: pull_request: push: jobs: benchmarks: name: "Run benchmarks" runs-on: ${{ matrix.operating-system }} strategy: matrix: dependencies: - "locked" php-version: - "7.4" operating-system: - "ubuntu-latest" steps: - name: "Checkout" uses: "actions/checkout@v2" - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: coverage: "none" php-version: "${{ matrix.php-version }}" ini-values: memory_limit=-1 tools: composer:v2, cs2pr - name: "Cache dependencies" uses: "actions/cache@v2" with: path: | ~/.composer/cache vendor key: "php-${{ matrix.php-version }}-${{ matrix.dependencies }}" restore-keys: "php-${{ matrix.php-version }}-${{ matrix.dependencies }}" - name: "Install lowest dependencies" if: ${{ matrix.dependencies == 'lowest' }} run: "composer update --prefer-lowest --no-interaction --no-progress" - name: "Install highest dependencies" if: ${{ matrix.dependencies == 'highest' }} run: "composer update --no-interaction --no-progress" - name: "Install locked dependencies" if: ${{ matrix.dependencies == 'locked' }} run: "composer install --no-interaction --no-progress" - name: "PhpBench" run: "make phpbench"