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:
1010 name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
1111 strategy :
1212 matrix :
13- php : ['8.0', '8.1']
13+ php : ['8.0', '8.1', '8.2' ]
1414 laravel : ['8', '9']
15+ exclude :
16+ - php : ' 8.2'
17+ laravel : ' 8'
1518 steps :
16- - uses : actions/checkout@v2
19+ - uses : actions/checkout@v3
1720 - name : Setup PHP
1821 uses : shivammathur/setup-php@v2
1922 with :
2023 php-version : ${{ matrix.php }}
24+ ini-values : error_reporting=E_ALL
2125 tools : phpunit, git
2226
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-
3427 - name : Install Composer dependencies
3528 run : rm -f composer.lock
3629
Original file line number Diff line number Diff line change 1414 php-version :
1515 - " 8.0"
1616 - " 8.1"
17+ - " 8.2"
1718
1819 steps :
1920 - name : " Checkout code"
You can’t perform that action at this time.
0 commit comments