Fix #628 by enabling opt-in to nullable scopes #11
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: Tests | |
on: | |
push: | |
paths-ignore: | |
- 'readme.md' | |
- 'assets/**' | |
pull_request: | |
paths-ignore: | |
- 'readme.md' | |
- 'assets/**' | |
release: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
laravel: [6.*, 7.*, 8.*, 9.*, 10.*] | |
php: [7.2, 7.3, 8.0, 8.1, 8.2] | |
exclude: | |
- laravel: 10.* | |
php: 7.2 | |
- laravel: 10.* | |
php: 7.3 | |
- laravel: 10.* | |
php: 8.0 | |
- laravel: 8.* | |
php: 7.2 | |
- laravel: 9.* | |
php: 7.2 | |
- laravel: 9.* | |
php: 7.3 | |
fail-fast: false | |
name: Laravel ${{ matrix.laravel }}, PHP ${{ matrix.php }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Set up 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 | |
- name: Install dependencies | |
run: | | |
composer require "illuminate/auth:${{ matrix.laravel }}" "illuminate/cache:${{ matrix.laravel }}" "illuminate/container:${{ matrix.laravel }}" "illuminate/contracts:${{ matrix.laravel }}" "illuminate/database:${{ matrix.laravel }}" "illuminate/console:${{ matrix.laravel }}" "illuminate/events:${{ matrix.laravel }}" --no-interaction --no-update | |
composer update --prefer-stable --prefer-dist --no-interaction --no-suggest | |
- name: Run tests | |
run: vendor/bin/phpunit --do-not-cache-result |