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 d6d79a1 commit 9ddd08cCopy full SHA for 9ddd08c
1 file changed
.github/workflows/ci.yml
@@ -10,9 +10,13 @@ jobs:
10
php: [7.4]
11
steps:
12
- uses: actions/checkout@v1
13
+ - name: Setup PHP
14
+ uses: shivammathur/setup-php@v2
15
+ with:
16
+ php-version: ${{ matrix.php }}
17
- name: Install dependencies
18
run: composer install --no-interaction --no-progress
19
- name: Run tests
- run: php${{ matrix.php }} vendor/bin/phpunit --verbose --fail-on-warning --coverage-text
20
+ run: vendor/bin/phpunit --verbose --fail-on-warning --coverage-text
21
- name: Run phpstan
- run: php${{ matrix.php }} vendor/bin/phpstan analyse
22
+ run: vendor/bin/phpstan analyse
0 commit comments