Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-10-13 09:20:10 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-10-13 18:55:37 +0300
commit081e9ac47f591c3bea2bb0b8f98938757e8d71c7 (patch)
tree803a9060fb0aae940b194d27b64a62245f4c8423 /.github
parenta70f283734ab0611589221bb3f9188e9fce24327 (diff)
Use own psalm instead of a global one
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/static-code-analysis.yml16
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)"