Skip to content

Commit

Permalink
Merge pull request #786 from nextcloud/update-stable25-target-versions
Browse files Browse the repository at this point in the history
Adjust testing matrix for Nextcloud 25 on stable25
  • Loading branch information
nickvergessen authored Sep 26, 2022
2 parents ddd2436 + d2c9ff6 commit 1afc89f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix:
php-versions: ['7.4', '8.0', '8.1']
databases: ['sqlite']
server-versions: ['master']
server-versions: ['stable25']

name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}

Expand Down
44 changes: 23 additions & 21 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Php Static analysis
name: Static analysis

on:
pull_request:
Expand All @@ -9,23 +9,25 @@ on:

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

0 comments on commit 1afc89f

Please sign in to comment.