Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions .github/workflows/analysis-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
fail-fast: false
matrix:
include:
- nextcloud: "27.1.2"
- nextcloud: "27.1.4"
python: "3.10"
php-version: "8.1"

Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
fail-fast: false
matrix:
include:
- nextcloud: "27.1.2"
- nextcloud: "27.1.4"
python: "3.11"
php-version: "8.2"
env:
Expand Down Expand Up @@ -364,7 +364,7 @@ jobs:
strategy:
fail-fast: false
matrix:
nextcloud: [ "27.1.2" ]
nextcloud: [ "27.1.4" ]
python: [ "3.11" ]
php-version: [ "8.2" ]

Expand Down Expand Up @@ -486,7 +486,7 @@ jobs:
strategy:
fail-fast: false
matrix:
nextcloud: [ 'stable27', 'master' ]
nextcloud: [ 'stable27', 'stable28', 'master' ]

services:
mariadb:
Expand Down Expand Up @@ -529,6 +529,7 @@ jobs:

- name: Checkout Notes
uses: actions/checkout@v4
if: ${{ !startsWith(matrix.nextcloud, 'master') }}
with:
repository: nextcloud/notes
ref: "main"
Expand All @@ -545,9 +546,12 @@ jobs:
./occ config:system:set loglevel --value=0 --type=integer
./occ config:system:set debug --value=true --type=boolean
./occ app:enable notifications
./occ app:enable notes
PHP_CLI_SERVER_WORKERS=2 php -S localhost:8080 &

- name: Enable Notes
if: ${{ !startsWith(matrix.nextcloud, 'master') }}
run: ./occ app:enable notes

- name: Checkout NcPyApi
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -641,7 +645,7 @@ jobs:
strategy:
fail-fast: false
matrix:
nextcloud: [ 'stable27', 'master' ]
nextcloud: [ 'stable27', 'stable28', 'master' ]
env:
NC_dbname: nextcloud_abz

Expand Down Expand Up @@ -804,7 +808,7 @@ jobs:
strategy:
fail-fast: false
matrix:
nextcloud: [ 'stable26', 'stable27', 'master' ]
nextcloud: [ 'stable26', 'stable27', 'stable28', 'master' ]
env:
NEXTCLOUD_URL: "http://localhost:8080/index.php"

Expand Down Expand Up @@ -835,6 +839,7 @@ jobs:

- name: Checkout Notes
uses: actions/checkout@v4
if: ${{ !startsWith(matrix.nextcloud, 'master') }}
with:
repository: nextcloud/notes
ref: "main"
Expand All @@ -851,9 +856,12 @@ jobs:
./occ config:system:set loglevel --value=0 --type=integer
./occ config:system:set debug --value=true --type=boolean
./occ app:enable activity
./occ app:enable notes
PHP_CLI_SERVER_WORKERS=2 php -S localhost:8080 &

- name: Enable Notes
if: ${{ !startsWith(matrix.nextcloud, 'master') }}
run: ./occ app:enable notes

- name: Checkout NcPyApi
uses: actions/checkout@v4
with:
Expand Down