Use composer install in the Psalm job

Our policy states that we do not want a new release to suddenly affect
our builds.
parent f3340254
...@@ -23,11 +23,11 @@ jobs: ...@@ -23,11 +23,11 @@ jobs:
uses: "actions/cache@v1.0.3" uses: "actions/cache@v1.0.3"
with: with:
path: "~/.composer/cache" path: "~/.composer/cache"
key: "composer-${{ hashFiles('composer.json') }}" key: "composer-${{ hashFiles('composer.lock') }}"
restore-keys: "composer-" restore-keys: "composer-"
- name: "Install dependencies with composer" - name: "Install dependencies with composer"
run: "composer update --no-interaction --no-progress --no-suggest" run: "composer install --no-interaction --no-progress --no-suggest"
- name: Psalm - name: Psalm
run: "vendor/bin/psalm" run: "vendor/bin/psalm"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment