DbQueue use lock for update from hectororm/query package instead …
#27
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: Tests | |
| on: | |
| push: ~ | |
| pull_request: ~ | |
| jobs: | |
| phpunit: | |
| name: PHPUnit on ${{ matrix.php-versions }} ${{ matrix.composer-flags }} | |
| runs-on: ubuntu-latest | |
| continue-on-error: ${{ !matrix.stable }} | |
| strategy: | |
| matrix: | |
| php-versions: ['8.2', '8.3', '8.4'] | |
| stable: [true] | |
| coverage: [true] | |
| composer-flags: [''] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| extensions: curl, mbstring | |
| coverage: xdebug | |
| tools: composer:v2 | |
| - run: composer update --no-progress ${{ matrix.composer-flags }} | |
| - run: vendor/bin/phpunit --no-coverage | |
| if: ${{ !matrix.coverage }} | |
| - run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover | |
| if: ${{ matrix.coverage }} |