Skip to content

Commit

Permalink
fix: カバレッジの出力
Browse files Browse the repository at this point in the history
  • Loading branch information
nonz250 committed Nov 2, 2023
1 parent 2b2f491 commit f75e029
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
restore-keys: |
${{ runner.os }}-php-
- name: Run test suite
- name: Run PHP CS Fixer.
run: composer run-script php-cs-fixer

phpstan:
Expand All @@ -61,7 +61,7 @@ jobs:
restore-keys: |
${{ runner.os }}-php-
- name: Run test suite
- name: Run PHPStan.
run: composer run-script phpstan

phpunit:
Expand All @@ -70,6 +70,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup PHP with Xdebug
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
coverage: xdebug

- name: Use composer cache.
uses: actions/cache@v3
with:
Expand Down

0 comments on commit f75e029

Please sign in to comment.