diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-02 14:51:09 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-20 11:22:10 +0100 |
commit | f6ed727b3fcb476495ea906032873f33d74c3d62 (patch) | |
tree | 0b1db6730d8378554efd7d0b44f80f7bbf16847c /.github | |
parent | e8299d4826ae083274109c9f721ff7224b932675 (diff) | |
download | nextcloud-server-f6ed727b3fcb476495ea906032873f33d74c3d62.tar.gz nextcloud-server-f6ed727b3fcb476495ea906032873f33d74c3d62.zip |
Always upload psalm result to github
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/static-code-analysis.yml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml index 1529619918a..e09cf082589 100644 --- a/.github/workflows/static-code-analysis.yml +++ b/.github/workflows/static-code-analysis.yml @@ -26,10 +26,11 @@ jobs: run: composer i - name: Psalm - run: composer run psalm -- --monochrome --no-progress --output-format=github --update-baseline --report=results.sarif || ( git diff -- . ':!lib/composer' && exit 1 ) + run: composer run psalm -- --monochrome --no-progress --output-format=github --update-baseline --report=results.sarif - name: Show potential changes in Psalm baseline run: git diff -- . ':!lib/composer' - name: Upload Analysis results to GitHub + if: always() uses: github/codeql-action/upload-sarif@v2 with: sarif_file: results.sarif @@ -44,14 +45,15 @@ jobs: - name: Set up php uses: shivammathur/setup-php@master with: - php-version: 8.0 + php-version: '8.0' extensions: ctype,curl,dom,fileinfo,gd,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip coverage: none - name: Composer install run: composer i - name: Psalm taint analysis - run: composer run psalm -- --monochrome --no-progress --output-format=github --update-baseline --report=results.sarif --taint-analysis || ( git diff -- . ':!lib/composer' && exit 1 ) + run: composer run psalm -- --monochrome --no-progress --output-format=github --report=results.sarif --taint-analysis - name: Upload Security Analysis results to GitHub + if: always() uses: github/codeql-action/upload-sarif@v2 with: sarif_file: results.sarif @@ -78,6 +80,6 @@ jobs: run: composer i - name: Psalm - run: composer run psalm -- -c psalm-ocp.xml --monochrome --no-progress --output-format=github --update-baseline || ( git diff -- . ':!lib/composer' && exit 1 ) + run: composer run psalm -- -c psalm-ocp.xml --monochrome --no-progress --output-format=github --update-baseline - name: Show potential changes in Psalm baseline run: git diff -- . ':!lib/composer' |