summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDevlin Junker <devlin.junker@gmail.com>2023-08-08 16:09:08 -0700
committerBenjamin Brahmer <info@b-brahmer.de>2023-08-09 11:08:04 +0200
commit9a047cbbcdfb17ebf9b46aee8eeb17ae7f17a160 (patch)
tree2a64cd3e8c1e4eb89c6fe8af08330bae89afc482 /.github
parentb9a5887897dd82be9e22fed7e00eeb022c016516 (diff)
minimum nextcloud version supported is 27
Signed-off-by: Devlin Junker <devlin.junker@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/api-integration-tests.yml10
-rw-r--r--.github/workflows/api-php-static-code-check.yml4
-rw-r--r--.github/workflows/api-php-tests.yml8
3 files changed, 2 insertions, 20 deletions
diff --git a/.github/workflows/api-integration-tests.yml b/.github/workflows/api-integration-tests.yml
index 16ea84198..f7619ff18 100644
--- a/.github/workflows/api-integration-tests.yml
+++ b/.github/workflows/api-integration-tests.yml
@@ -29,7 +29,7 @@ jobs:
strategy:
matrix:
php-versions: ['8.0', '8.1']
- nextcloud: ['stable25', 'stable26', 'stable27']
+ nextcloud: ['stable27']
database: ['sqlite', 'pgsql', 'mysql']
experimental: [false]
include:
@@ -41,14 +41,6 @@ jobs:
nextcloud: pre-release
database: sqlite
experimental: true
- - php-versions: 7.4
- nextcloud: stable25
- database: sqlite
- experimental: false
- - php-versions: 8.2
- nextcloud: stable26
- database: sqlite
- experimental: false
steps:
- name: Checkout
uses: actions/checkout@v3
diff --git a/.github/workflows/api-php-static-code-check.yml b/.github/workflows/api-php-static-code-check.yml
index 4afd9eaf1..37035c244 100644
--- a/.github/workflows/api-php-static-code-check.yml
+++ b/.github/workflows/api-php-static-code-check.yml
@@ -15,10 +15,6 @@ jobs:
nextcloud: pre-release
database: sqlite
experimental: true
- - php-versions: 7.4
- nextcloud: stable25
- database: sqlite
- experimental: false
name: "phpstan: Nextcloud ${{ matrix.nextcloud }} with ${{ matrix.php-versions }}"
steps:
- name: Checkout
diff --git a/.github/workflows/api-php-tests.yml b/.github/workflows/api-php-tests.yml
index dae893f22..1b309daf8 100644
--- a/.github/workflows/api-php-tests.yml
+++ b/.github/workflows/api-php-tests.yml
@@ -10,16 +10,10 @@ jobs:
strategy:
matrix:
php-versions: ['8.1']
- nextcloud: ['stable26', 'stable27']
+ nextcloud: ['stable27']
database: ['sqlite']
experimental: [false]
codecoverage: [false]
- include:
- - php-versions: 8.0
- nextcloud: stable25
- database: sqlite
- experimental: false
- codecoverage: true
steps:
- name: Checkout
uses: actions/checkout@v3