CI #396
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: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
pull_request: | |
jobs: | |
tests: | |
runs-on: 'ubuntu-latest' | |
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} | |
strategy: | |
matrix: | |
php: ['8.0', '8.1', '8.2'] | |
laravel: ['8', '9', '10'] | |
exclude: | |
- php: '8.2' | |
laravel: '8' | |
- php: '8.0' | |
laravel: '10' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
ini-values: error_reporting=E_ALL | |
tools: phpunit, git | |
- name: Install Composer dependencies | |
run: rm -f composer.lock | |
- name: Install dependencies for Laravel ${{ matrix.laravel}} | |
run: composer require --no-progress --no-scripts --no-plugins illuminate/config ^${{ matrix.laravel }} illuminate/contracts ^${{ matrix.laravel }} illuminate/console ^${{ matrix.laravel }} -v | |
- name: Update dependencies | |
run: composer update --no-interaction | |
- name: PHPUnit | |
run: vendor/bin/phpunit |