Skip to content

Commit 5d41745

Browse files
committed
Clean up CI file a little.
1 parent b4f26d4 commit 5d41745

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

.github/workflows/quality-assurance.yaml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,35 +7,30 @@ on:
77

88
jobs:
99
phpunit:
10-
name: PHPUnit tests on ${{ matrix.php }} ${{ matrix.composer-flags }}
10+
name: PHPUnit tests on ${{ matrix.php }}
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
php: [ '8.4' ]
15-
composer-flags: [ '' ]
16-
phpunit-flags: [ '--coverage-text' ]
14+
php: [ '8.4', '8.5' ]
1715
steps:
1816
- uses: actions/checkout@v2
1917
- uses: shivammathur/setup-php@v2
2018
with:
2119
php-version: ${{ matrix.php }}
2220
coverage: xdebug
23-
tools: composer:v2
24-
- run: composer install --no-progress ${{ matrix.composer-flags }}
25-
- run: vendor/bin/phpunit ${{ matrix.phpunit-flags }}
21+
- run: composer install --no-progress
22+
- run: vendor/bin/phpunit
2623
phpstan:
2724
name: PHPStan checks on ${{ matrix.php }}
2825
runs-on: ubuntu-latest
2926
strategy:
3027
matrix:
3128
php: [ '8.4' ]
32-
composer-flags: [ '' ]
3329
steps:
3430
- uses: actions/checkout@v2
3531
- uses: shivammathur/setup-php@v2
3632
with:
3733
php-version: ${{ matrix.php }}
38-
coverage: xdebug
39-
tools: composer:v2
40-
- run: composer install --no-progress ${{ matrix.composer-flags }}
34+
coverage: none
35+
- run: composer install --no-progress
4136
- run: vendor/bin/phpstan

0 commit comments

Comments
 (0)