We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6ceeec commit cabfc0dCopy full SHA for cabfc0d
.github/workflows/pull-request-check.yml
@@ -13,7 +13,7 @@ jobs:
13
uses: shivammathur/setup-php@v2
14
with:
15
php-version: '8.2'
16
- tools: composer, phpunit:9.6
+ tools: composer
17
coverage: none
18
19
- name: Cache Composer dependencies
@@ -23,7 +23,9 @@ jobs:
23
key: ${{ runner.os }}-${{ hashFiles('composer.lock') }}
24
25
- name: Installing dependencies
26
+ env:
27
+ COMPOSER_CACHE_DIR: /tmp/composer-cache
28
run: composer install --no-interaction --no-progress --prefer-dist
29
30
- name: Running unit test
- run: phpunit --configuration phpunit.xml
31
+ run: vendor/bin/phpunit --configuration phpunit.xml
0 commit comments