-
Notifications
You must be signed in to change notification settings - Fork 24
39 lines (35 loc) · 1.16 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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.0'
laravel: '10'
- php: '8.2'
laravel: '8'
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/auth ^${{ matrix.laravel }} illuminate/config ^${{ matrix.laravel }} illuminate/contracts ^${{ matrix.laravel }} illuminate/support ^${{ matrix.laravel }} illuminate/http ^${{ matrix.laravel }} -v
- name: Update dependencies
run: composer update --no-interaction
- name: PHPUnit
run: vendor/bin/phpunit