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 f50d18d commit b7ca157Copy full SHA for b7ca157
.github/workflows/ci.yml
@@ -5,10 +5,6 @@ jobs:
5
code-quality:
6
name: Run code quality checks on PHP 7.4
7
runs-on: ubuntu-latest
8
- strategy:
9
- fail-fast: false
10
- matrix:
11
- dependency-version: ['', '--prefer-lowest']
12
steps:
13
- name: Checkout code
14
uses: actions/checkout@v2
@@ -17,7 +13,7 @@ jobs:
17
with:
18
php-version: '7.4'
19
15
- name: Install dependencies
20
- run: composer update ${{ matrix.dependency-version }} --no-ansi --no-interaction --no-scripts --no-suggest --prefer-dist
16
+ run: composer install
21
- name: Run PHPStan
22
run: vendor/bin/phpstan analyze
23
- name: Run PHP CS Fixer
.gitignore
@@ -1,4 +1,3 @@
1
-/composer.lock
2
/vendor
3
.phpunit.result.cache
4
.php-cs-fixer.cache
0 commit comments