Skip to content

Commit 751bd98

Browse files
committed
Improve github actions setup
1 parent a1d135c commit 751bd98

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ on:
55

66
jobs:
77
test:
8-
name: Test on ${{ matrix.php-versions }} PHP
8+
name: Test on PHP ${{ matrix.php-versions }}
99
runs-on: ubuntu-latest
1010

1111
strategy:
12+
fail-fast: false
1213
matrix:
1314
php-versions: ['7.1', '7.2', '7.3', '7.4']
1415

@@ -19,13 +20,13 @@ jobs:
1920
uses: shivammathur/setup-php@v2
2021
with:
2122
php-version: ${{ matrix.php-versions }}
22-
coverage: xdebug
23+
coverage: none
2324

2425
- name: Install Composer Dependencies
2526
uses: ramsey/composer-install@v1
2627

2728
- name: Run phpunit
28-
run: vendor/bin/phpunit --verbose --coverage-text
29+
run: vendor/bin/phpunit --verbose
2930

3031
roave_bc_check:
3132
name: Roave BC Check
@@ -37,6 +38,7 @@ jobs:
3738
uses: docker://nyholm/roave-bc-check-ga
3839

3940
phpstan:
41+
name: PHPStan
4042
runs-on: ubuntu-latest
4143

4244
steps:
@@ -45,9 +47,12 @@ jobs:
4547
- uses: shivammathur/setup-php@v2
4648
with:
4749
php-version: 7.1
50+
coverage: none
4851

4952
- name: Install Composer Dependencies
5053
uses: ramsey/composer-install@v1
5154

5255
- name: Run phpstan
5356
run: vendor/bin/phpstan analyse --no-progress
57+
58+

0 commit comments

Comments
 (0)