File tree Expand file tree Collapse file tree 2 files changed +7
-13
lines changed Expand file tree Collapse file tree 2 files changed +7
-13
lines changed Original file line number Diff line number Diff line change @@ -10,27 +10,20 @@ jobs:
10
10
name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
11
11
strategy :
12
12
matrix :
13
- php : ['8.0', '8.1']
13
+ php : ['8.0', '8.1', '8.2' ]
14
14
laravel : ['8', '9']
15
+ exclude :
16
+ - php : ' 8.2'
17
+ laravel : ' 8'
15
18
steps :
16
- - uses : actions/checkout@v2
19
+ - uses : actions/checkout@v3
17
20
- name : Setup PHP
18
21
uses : shivammathur/setup-php@v2
19
22
with :
20
23
php-version : ${{ matrix.php }}
24
+ ini-values : error_reporting=E_ALL
21
25
tools : phpunit, git
22
26
23
- - name : Get composer cache directory
24
- id : composer-cache
25
- run : echo "::set-output name=dir::$(composer config cache-files-dir)"
26
-
27
- - name : Cache composer dependencies
28
- uses : actions/cache@v1
29
- with :
30
- path : ${{ steps.composer-cache.outputs.dir }}
31
- key : " php-${{ matrix.php }}-${{matrix.laravel}}-composer-locked-${{ hashFiles('composer.lock') }}"
32
- restore-keys : " php-${{ matrix.php }}-${{matrix.laravel}}-composer-locked-"
33
-
34
27
- name : Install Composer dependencies
35
28
run : rm -f composer.lock
36
29
Original file line number Diff line number Diff line change 14
14
php-version :
15
15
- " 8.0"
16
16
- " 8.1"
17
+ - " 8.2"
17
18
18
19
steps :
19
20
- name : " Checkout code"
You can’t perform that action at this time.
0 commit comments