Skip to content

Commit ba046b9

Browse files
committed
fix: remove psalm in phpunit actions
Signed-off-by: Julien Veyssier <[email protected]>
1 parent 20e9fcd commit ba046b9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/phpunit-mariadb.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ jobs:
133133
if: steps.check_composer.outputs.files_exists == 'true'
134134
working-directory: apps/${{ env.APP_NAME }}
135135
run: |
136+
rm -rf vendor-bin/psalm-phar
136137
composer remove nextcloud/ocp --dev --no-scripts
137138
composer i
138139

.github/workflows/phpunit-pgsql.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ jobs:
6868

6969
strategy:
7070
matrix:
71-
php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }}
71+
# Php 8.5 (supported by server's master) is not supported by Psalm 6.12.1
72+
#php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }}
73+
php-versions: 8.4
7274
server-versions: ${{ fromJson(needs.matrix.outputs.server-max) }}
7375

7476
name: PostgreSQL PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }}

0 commit comments

Comments
 (0)