Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed Dec 10, 2023
1 parent 29e1e93 commit c887e77
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/phpunit-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

strategy:
matrix:
php-versions: ['8.0']
php-versions: ['8.1']
server-versions: ['master']

services:
Expand Down Expand Up @@ -159,4 +159,4 @@ jobs:

steps:
- name: Summary status
run: if ${{ needs.phpunit-mysql.result != 'success' }}; then exit 1; fi
run: if ${{ needs.phpunit-mysql.result != 'success' }}; then exit 1; fi
4 changes: 2 additions & 2 deletions .github/workflows/phpunit-pgsql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

strategy:
matrix:
php-versions: ['8.0']
php-versions: ['8.1']
server-versions: ['master']

services:
Expand Down Expand Up @@ -156,4 +156,4 @@ jobs:

steps:
- name: Summary status
run: if ${{ needs.phpunit-pgsql.result != 'success' }}; then exit 1; fi
run: if ${{ needs.phpunit-pgsql.result != 'success' }}; then exit 1; fi
15 changes: 12 additions & 3 deletions .github/workflows/phpunit-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,17 @@ jobs:

strategy:
matrix:
php-versions: ['8.0', '8.1', '8.2']
server-versions: ['master', 'stable26', 'stable27']
php-versions: ['8.1', '8.2']
server-versions: ['master', 'stable26', 'stable27', 'stable28']
include:
- php-versions: 8.0
server-versions: stable26
- php-versions: 8.0
server-versions: stable27
- php-versions: 8.3
server-versions: stable28
- php-versions: 8.3
server-versions: master

steps:
- name: Set app env
Expand Down Expand Up @@ -145,4 +154,4 @@ jobs:

steps:
- name: Summary status
run: if ${{ needs.phpunit-sqlite.result != 'success' }}; then exit 1; fi
run: if ${{ needs.phpunit-sqlite.result != 'success' }}; then exit 1; fi
2 changes: 1 addition & 1 deletion .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

strategy:
matrix:
ocp-version: [ 'v26.0.0', 'v27.0.0', 'dev-master']
ocp-version: [ '26', '27', '28', 'dev-master']
php-version: [ '8.2' ]

name: Nextcloud ${{ matrix.ocp-version }}
Expand Down

0 comments on commit c887e77

Please sign in to comment.