From 8ac6efbb1bc58b02984562187d9524ecdf6ed62d Mon Sep 17 00:00:00 2001 From: provokateurin Date: Tue, 9 Apr 2024 12:19:44 +0200 Subject: [PATCH 1/2] fix(ci): Do not cancel matrix jobs when testing against apps Signed-off-by: provokateurin --- .github/workflows/test-repositories.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-repositories.yml b/.github/workflows/test-repositories.yml index 16a9c6f..8224869 100644 --- a/.github/workflows/test-repositories.yml +++ b/.github/workflows/test-repositories.yml @@ -24,6 +24,7 @@ jobs: openapi-repositories: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: php-versions: [ "8.1" ] repositories: [ "nextcloud/notifications", "nextcloud/server", "nextcloud/spreed" ] From 922e6bd6bfcd37d60cc757d0de778927e57f76b5 Mon Sep 17 00:00:00 2001 From: provokateurin Date: Tue, 9 Apr 2024 12:20:06 +0200 Subject: [PATCH 2/2] feat(ci): Add more apps to test against Signed-off-by: provokateurin --- .github/workflows/test-repositories.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-repositories.yml b/.github/workflows/test-repositories.yml index 8224869..97c99a4 100644 --- a/.github/workflows/test-repositories.yml +++ b/.github/workflows/test-repositories.yml @@ -27,7 +27,12 @@ jobs: fail-fast: false matrix: php-versions: [ "8.1" ] - repositories: [ "nextcloud/notifications", "nextcloud/server", "nextcloud/spreed" ] + repositories: + - "nextcloud/assistant" + - "nextcloud/notifications" + - "nextcloud/server" + - "nextcloud/spreed" + - "nextcloud/tables" name: openapi-repositories