Document queue event log levels #8
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: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - php: "8.2" | |
| suite: "laravel-12" | |
| - php: "8.3" | |
| suite: "laravel-13" | |
| - php: "8.4" | |
| suite: "laravel-13" | |
| - php: "8.5" | |
| suite: "laravel-13" | |
| name: PHP ${{ matrix.php }} / ${{ matrix.suite }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| coverage: none | |
| - name: Validate composer.json | |
| run: composer validate --strict | |
| - uses: ramsey/composer-install@v3 | |
| with: | |
| dependency-versions: highest | |
| composer-options: --no-interaction --no-progress --prefer-dist | |
| - name: Run test suite | |
| run: composer test | |
| analyse: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "8.5" | |
| coverage: none | |
| - uses: ramsey/composer-install@v3 | |
| with: | |
| dependency-versions: highest | |
| composer-options: --no-interaction --no-progress --prefer-dist | |
| - name: Validate composer.json | |
| run: composer validate --strict | |
| - name: Run static analysis | |
| run: composer analyse |