Skip to content

CI

CI #260

Workflow file for this run

name: CI
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
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