diff options
author | Daniel <mail@danielkesselberg.de> | 2021-10-03 19:37:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-03 19:37:47 +0200 |
commit | fa01cacd8f1b58349eadfe2b422a0cfd279db83d (patch) | |
tree | 0fe987b4a3a7a47b9e22235ec900aec7376e82fa | |
parent | 4de03c1e8c95b384ef68517f54dd55daeb381c26 (diff) | |
parent | b4403201dc192f7d526493ee2c44fff5d9124263 (diff) | |
download | nextcloud-server-fa01cacd8f1b58349eadfe2b422a0cfd279db83d.tar.gz nextcloud-server-fa01cacd8f1b58349eadfe2b422a0cfd279db83d.zip |
Merge pull request #29044 from nextcloud/ci/noid/psalm-inline-gitub
Change output format of Psalm to Github
-rw-r--r-- | .github/workflows/static-code-analysis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml index fb415b585ec..0a2df0d71f9 100644 --- a/.github/workflows/static-code-analysis.yml +++ b/.github/workflows/static-code-analysis.yml @@ -22,7 +22,7 @@ jobs: - 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 ) + run: composer run psalm -- --monochrome --no-progress --output-format=github --update-baseline || ( git diff -- . ':!lib/composer' && exit 1 ) - name: Check diff run: git diff -- . ':!lib/composer' - name: Show potential changes in Psalm baseline @@ -48,7 +48,7 @@ jobs: - name: Composer install run: composer i - name: Psalm - run: composer run psalm -- -c psalm-ocp.xml --monochrome --no-progress --output-format=text --update-baseline || ( git diff -- . ':!lib/composer' && exit 1 ) + run: composer run psalm -- -c psalm-ocp.xml --monochrome --no-progress --output-format=github --update-baseline || ( git diff -- . ':!lib/composer' && exit 1 ) - name: Check diff run: git diff -- . ':!lib/composer' - name: Show potential changes in Psalm baseline |