File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed
Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 99 - name : Checkout repository
1010 uses : actions/checkout@v3
1111
12+ - name : Setup PHP
13+ uses : shivammathur/setup-php@v2
14+ with :
15+ php-version : ' 8.2'
16+ tools : composer, phpunit:9.6
17+ coverage : none
18+
1219 - name : Cache Composer dependencies
1320 uses : actions/cache@v3
1421 with :
1522 path : /tmp/composer-cache
1623 key : ${{ runner.os }}-${{ hashFiles('composer.lock') }}
1724
1825 - name : Installing dependencies
19- uses : php-actions/composer@v6
20- with :
21- php_version : 8.2
26+ run : composer install --no-interaction --no-progress --prefer-dist
2227
2328 - name : Running unit test
24- uses : php-actions/phpunit@v3
25- with :
26- version : 9.6
27- php_version : 8.2
28- configuration : phpunit.xml
29+ run : phpunit --configuration phpunit.xml
You can’t perform that action at this time.
0 commit comments