Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2022-09-22 16:06:29 +0300
committerGitHub <noreply@github.com>2022-09-22 16:06:29 +0300
commit2b959e9ba06e8e0d6629d5ad3a5dd036e60dc65a (patch)
tree63a1cbd9a91e9edfc1f6aae034b8af75ed9adba8
parentd5dfebe031f64297fb82c457bad7761b1e187f6f (diff)
parent1c7046fae29f58dd41ecd9a5253e6e9fce402e9d (diff)
Merge pull request #1279 from nextcloud/update-stable25-target-versionsv25.0.0rc1
Adjust testing matrix for Nextcloud 25 on stable25
-rw-r--r--.github/workflows/integration.yml8
-rw-r--r--.github/workflows/phpunit.yml8
-rw-r--r--.github/workflows/static-analysis.yml49
3 files changed, 36 insertions, 29 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml
index dcb0192..13cacfe 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -27,7 +27,7 @@ jobs:
matrix:
php-versions: ['7.4']
databases: ['sqlite']
- server-versions: ['master']
+ server-versions: ['stable25']
name: integration-php${{ matrix.php-versions }}-${{ matrix.databases }}
@@ -135,7 +135,7 @@ jobs:
matrix:
php-versions: ['7.4', '8.0', "8.1"]
databases: ['mysql']
- server-versions: ['master']
+ server-versions: ['stable25']
name: integration-php${{ matrix.php-versions }}-${{ matrix.databases }}
@@ -201,7 +201,7 @@ jobs:
matrix:
php-versions: ['7.4']
databases: ['pgsql']
- server-versions: ['master']
+ server-versions: ['stable25']
name: integration-php${{ matrix.php-versions }}-${{ matrix.databases }}
@@ -269,7 +269,7 @@ jobs:
matrix:
php-versions: ['7.4']
databases: ['oci']
- server-versions: ['master']
+ server-versions: ['stable25']
name: integration-php${{ matrix.php-versions }}-${{ matrix.databases }}
diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml
index 81bb240..8470373 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -27,7 +27,7 @@ jobs:
matrix:
php-versions: ['7.4']
databases: ['sqlite']
- server-versions: ['master']
+ server-versions: ['stable25']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}
@@ -83,7 +83,7 @@ jobs:
matrix:
php-versions: ['7.4', '8.0', "8.1"]
databases: ['mysql']
- server-versions: ['master']
+ server-versions: ['stable25']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}
@@ -148,7 +148,7 @@ jobs:
matrix:
php-versions: ['7.4']
databases: ['pgsql']
- server-versions: ['master']
+ server-versions: ['stable25']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}
@@ -215,7 +215,7 @@ jobs:
matrix:
php-versions: ['7.4']
databases: ['oci']
- server-versions: ['master']
+ server-versions: ['stable25']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}
diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml
index 4f40268..7dc1b16 100644
--- a/.github/workflows/static-analysis.yml
+++ b/.github/workflows/static-analysis.yml
@@ -1,26 +1,33 @@
name: Static analysis
-on: [pull_request]
+on:
+ pull_request:
+ push:
+ branches:
+ - master
+ - stable*
jobs:
static-psalm-analysis:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- ocp-version: [ 'dev-master' ]
- name: Nextcloud ${{ matrix.ocp-version }}
- steps:
- - name: Checkout
- uses: actions/checkout@master
- - name: Set up php
- uses: shivammathur/setup-php@master
- with:
- php-version: 7.4
- tools: composer:v1
- coverage: none
- - name: Install dependencies
- run: composer i
- - name: Install dependencies
- run: composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }}
- - name: Run coding standards check
- run: composer run psalm
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ ocp-version: [ 'dev-stable25' ]
+
+ name: Nextcloud ${{ matrix.ocp-version }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@master
+
+ - name: Set up php
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: 7.4
+ coverage: none
+
+ - name: Install dependencies
+ run: composer install --dev
+
+ - name: Run coding standards check
+ run: composer run psalm