diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-02-01 17:15:57 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-02-06 10:32:05 +0100 |
commit | 7b0a559e63dbd34aff598b55ac3ebada7b9de612 (patch) | |
tree | 28b22326cfb0bd18e6c9f2e62bb372cc92a63d52 /.github | |
parent | de19878cdf8976e783cdb8d0cb593c437ac4b404 (diff) | |
download | nextcloud-server-7b0a559e63dbd34aff598b55ac3ebada7b9de612.tar.gz nextcloud-server-7b0a559e63dbd34aff598b55ac3ebada7b9de612.zip |
chore: Use the same configuration in update-baseline as in psalm workflow
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/update-psalm-baseline.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/update-psalm-baseline.yml b/.github/workflows/update-psalm-baseline.yml index 1f3998759e1..96228f65795 100644 --- a/.github/workflows/update-psalm-baseline.yml +++ b/.github/workflows/update-psalm-baseline.yml @@ -28,7 +28,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: '8.0' - extensions: ctype,curl,dom,fileinfo,gd,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip + extensions: apcu,ctype,curl,dom,fileinfo,ftp,gd,intl,json,ldap,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip coverage: none env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -37,11 +37,11 @@ jobs: run: composer install - name: Psalm - run: composer run psalm -- --monochrome --no-progress --output-format=text --update-baseline + run: composer run psalm:ci -- --monochrome --no-progress --output-format=text --update-baseline continue-on-error: true - name: Psalm OCP - run: composer run psalm -- -c psalm-ocp.xml --monochrome --no-progress --output-format=github --update-baseline + run: composer run psalm:ci -- -c psalm-ocp.xml --monochrome --no-progress --output-format=github --update-baseline continue-on-error: true - name: Reset composer |