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

github.com/nextcloud/nextcloud_announcements.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 23:13:47 +0300
committerGitHub <noreply@github.com>2022-09-22 23:13:47 +0300
commit1e5eacfc44ec3bee50f00e5c350d52fb487a6238 (patch)
tree87a104d801ab5e200fe98414d785ac0c41e73517
parentf464bd3d914e6de8e6db1a5e09a72c27927db96f (diff)
parent9fea3690ff3b20df2f958e67832e3406cd38c5ca (diff)
Merge pull request #104 from nextcloud/update-stable25-target-versions
Adjust testing matrix for Nextcloud 25 on stable25
-rw-r--r--.github/workflows/phpunit-sqlite.yml2
-rw-r--r--.github/workflows/static-analysis.yml49
-rw-r--r--.github/workflows/update-christophwurst-nextcloud.yml2
3 files changed, 30 insertions, 23 deletions
diff --git a/.github/workflows/phpunit-sqlite.yml b/.github/workflows/phpunit-sqlite.yml
index 9a86fea..85b6ce9 100644
--- a/.github/workflows/phpunit-sqlite.yml
+++ b/.github/workflows/phpunit-sqlite.yml
@@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
php-versions: ['7.4', '8.0', '8.1']
- server-versions: ['master']
+ server-versions: ['stable25']
steps:
- name: Set app env
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
diff --git a/.github/workflows/update-christophwurst-nextcloud.yml b/.github/workflows/update-christophwurst-nextcloud.yml
index e2e5f52..50c81c6 100644
--- a/.github/workflows/update-christophwurst-nextcloud.yml
+++ b/.github/workflows/update-christophwurst-nextcloud.yml
@@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- branches: ["master", "stable24", "stable23", "stable22"]
+ branches: ["master", "stable25", "stable24", "stable23"]
name: update-christophwurst-nextcloud-${{ matrix.branches }}