Update phpunit/phpunit requirement from ^9.5.25 to ^10.3.5 #193
Workflow file for this run
This file contains 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: CI | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: | |
- '8.1' | |
- '8.2' | |
laravel: | |
- 9.* | |
- 10.* | |
prefer: | |
- 'prefer-lowest' | |
- 'prefer-stable' | |
include: | |
- laravel: '9.*' | |
testbench: '7.*' | |
- laravel: '10.*' | |
testbench: '8.*' | |
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }} | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 | |
coverage: pcov | |
- uses: actions/[email protected] | |
name: Cache dependencies | |
with: | |
path: ~/.composer/cache/files | |
key: composer-php-${{ matrix.php }}-${{ matrix.prefer }}-${{ hashFiles('composer.json') }} | |
- name: Install dependencies | |
run: | | |
composer require "orchestra/testbench:${{ matrix.testbench }}" "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update | |
composer update --${{ matrix.prefer }} --prefer-dist --no-interaction --no-suggest | |
- name: Run tests | |
run: | | |
vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml | |
- uses: codecov/[email protected] | |
with: | |
fail_ci_if_error: true |