Skip to content

Commit 9f602a2

Browse files
committed
added some whitespace to workflow file
1 parent 7bb11f2 commit 9f602a2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,25 @@ jobs:
1212
name: PHP ${{ matrix.php }}
1313
steps:
1414
- uses: actions/checkout@v2
15+
1516
- name: Setup PHP
1617
uses: shivammathur/[email protected]
1718
with:
1819
php-version: ${{ matrix.php }}
20+
1921
- name: Cache Composer packages
2022
id: composer-cache
2123
uses: actions/cache@v2
2224
with:
2325
path: "~/.composer/cache"
2426
key: "php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}"
2527
restore-keys: "php-${{ matrix.php }}-composer-"
28+
2629
- name: Install dependencies
2730
run: composer install --prefer-dist --no-interaction
31+
2832
- name: Run PHPStan
2933
run: ./vendor/bin/phpstan analyze --no-progress
34+
3035
- name: Run PHPUnit tests
3136
run: ./vendor/bin/phpunit --bootstrap vendor/autoload.php --fail-on-warning tests/phpunit

0 commit comments

Comments
 (0)