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 5557fd8 commit 06ac6c8Copy full SHA for 06ac6c8
.github/workflows/phpstan.yml
@@ -7,7 +7,8 @@ jobs:
7
name: phpstan
8
runs-on: ubuntu-latest
9
steps:
10
- - uses: actions/checkout@v2
+ - name: Checkout code
11
+ uses: actions/checkout@v2
12
13
- name: Setup PHP
14
uses: shivammathur/setup-php@v2
@@ -16,14 +17,8 @@ jobs:
16
17
extensions: fileinfo, pdo
18
coverage: none
19
- - name: Cache composer dependencies
20
- uses: actions/cache@v2
21
- with:
22
- path: vendor
23
- key: composer-${{ hashFiles('composer.lock') }}
24
-
25
- - name: Run composer install
26
- run: composer install -n --prefer-dist
+ - name: Install dependencies
+ run: composer install --no-interaction --prefer-dist
27
28
- name: Run phpstan
29
run: ./vendor/bin/phpstan analyze
0 commit comments