chore(deps): update dependency pestphp/pest to v4 #22
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: TESTS | |
| on: ['push'] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: | |
| - '8.4' | |
| - '8.3' | |
| - '8.2' | |
| name: Tests (PHP ${{ matrix.php }} - ${{ matrix.deps }}) | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup PHP ${{ matrix.php }} | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick | |
| coverage: xdebug | |
| - name: Install dependencies | |
| run: composer update | |
| - name: Test code | |
| run: composer tests | |
| - name: Test coverage | |
| run: composer tests-coverage | |
| - name: Test coverage | |
| run: composer tests-mutation |