diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-10-13 08:20:10 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-10-13 17:55:37 +0200 |
commit | 081e9ac47f591c3bea2bb0b8f98938757e8d71c7 (patch) | |
tree | 803a9060fb0aae940b194d27b64a62245f4c8423 /.github/workflows/static-code-analysis.yml | |
parent | a70f283734ab0611589221bb3f9188e9fce24327 (diff) | |
download | nextcloud-server-081e9ac47f591c3bea2bb0b8f98938757e8d71c7.tar.gz nextcloud-server-081e9ac47f591c3bea2bb0b8f98938757e8d71c7.zip |
Use own psalm instead of a global one
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to '.github/workflows/static-code-analysis.yml')
-rw-r--r-- | .github/workflows/static-code-analysis.yml | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml index 8f1fd9a2a30..a7144193ae7 100644 --- a/.github/workflows/static-code-analysis.yml +++ b/.github/workflows/static-code-analysis.yml @@ -13,13 +13,17 @@ jobs: auth_header="$(git config --local --get http.https://github.com/.extraheader)" git submodule sync --recursive git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 - - name: Remove composer.json - shell: bash - run: rm composer.json composer.lock - - name: Psalm - uses: docker://jakzal/phpqa:php7.4-alpine + - name: Set up php7.4 + uses: shivammathur/setup-php@master with: - args: psalm --monochrome --no-progress --output-format=text --update-baseline || ( git diff && exit 1 ) + php-version: 7.4 + coverage: none + - name: Composer install + run: composer i + - name: Psalm + run: composer run psalm -- --monochrome --no-progress --output-format=text --update-baseline || ( git diff -- . ':!lib/composer' && exit 1 ) + - name: Check diff + run: git diff -- . ':!lib/composer' && exit 1 - name: Show potential changes in Psalm baseline run: | bash -c "[[ ! \"`git status --porcelain build/psalm-baseline.xml`\" ]] || ( echo 'Uncommited changes in Psalm baseline' && git status && git diff build/psalm-baseline.xml)" |