Deprecate DocumentRepository::clear #1069
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Performance tests" | |
on: | |
pull_request: | |
branches: | |
- "*.x" | |
push: | |
jobs: | |
performance-tests: | |
name: "Performance Tests" | |
runs-on: "ubuntu-22.04" | |
strategy: | |
matrix: | |
php-version: | |
- "8.1" | |
services: | |
mongodb: | |
image: "mongo" | |
ports: | |
- "27017:27017" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: Setup cache environment | |
id: extcache | |
uses: shivammathur/cache-extensions@v1 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: "mongodb-${{ matrix.driver-version }}, bcmath" | |
key: "extcache-v1" | |
- name: Cache extensions | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.extcache.outputs.dir }} | |
key: ${{ steps.extcache.outputs.key }} | |
restore-keys: ${{ steps.extcache.outputs.key }} | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
extensions: "mongodb, bcmath" | |
php-version: "${{ matrix.php-version }}" | |
- name: "Show driver information" | |
run: "php --ri mongodb" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v2" | |
- name: "Upload composer.lock as build artifact" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: composer.lock | |
path: composer.lock | |
- name: "Run PHPBench" | |
run: "vendor/bin/phpbench run --report=default --revs=100 --iterations=5 --report=aggregate" |