This repository was archived by the owner on Jul 16, 2025. It is now read-only.
feat: use intersection type AbstractUid&TimeBasedUidInterface for flexible message IDs
#1076
Workflow file for this run
This file contains hidden or 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: pipeline | |
| on: pull_request | |
| env: | |
| REQUIRED_PHP_EXTENSIONS: 'mongodb' | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php: ['8.2', '8.3', '8.4'] | |
| dependencies: ['lowest', 'highest'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| coverage: "none" | |
| extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}" | |
| - name: Install Composer | |
| uses: "ramsey/composer-install@v3" | |
| with: | |
| dependency-versions: "${{ matrix.dependencies }}" | |
| composer-options: "--ignore-platform-req=ext-mongodb" | |
| - name: Tests | |
| run: vendor/bin/phpunit | |
| qa: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.2' | |
| coverage: "none" | |
| extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}" | |
| - name: Install Composer | |
| uses: "ramsey/composer-install@v3" | |
| with: | |
| composer-options: "--ignore-platform-req=ext-mongodb" | |
| - name: Composer Validation | |
| run: composer validate --strict | |
| - name: Code Style PHP | |
| run: vendor/bin/php-cs-fixer fix --dry-run | |
| - name: Rector | |
| run: vendor/bin/rector --dry-run | |
| - name: PHPStan | |
| run: vendor/bin/phpstan analyse |