Run Tests #1128
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: Run Tests | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| php-tests: | |
| runs-on: ${{ matrix.os }} | |
| if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
| strategy: | |
| matrix: | |
| php: [8.2, 8.3, 8.4] | |
| laravel: [10.*, 11.*, 12.*] | |
| stability: [prefer-lowest, prefer-stable] | |
| os: [ubuntu-latest] | |
| exclude: | |
| - laravel: 10.* | |
| php: 8.4 | |
| - laravel: 12.* | |
| php: 8.2 | |
| name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} | |
| steps: | |
| - name: Update apt sources | |
| if: matrix.os == 'ubuntu-latest' | |
| run: | | |
| sudo apt-get check || sudo apt --fix-broken install -y | |
| sudo apt-get update | |
| - name: Checkout code | |
| uses: actions/checkout@v1 | |
| - name: Setup 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, fileinfo | |
| coverage: none | |
| - name: Install dependencies | |
| uses: nick-invision/retry@v3 | |
| with: | |
| timeout_minutes: 5 | |
| max_attempts: 5 | |
| command: | | |
| composer update --${{ matrix.stability }} --prefer-dist --no-interaction | |
| - name: List Installed Dependencies | |
| run: composer show -D | |
| - name: Execute tests | |
| run: ./vendor/bin/pest --ci --parallel |