2021-02-13 16:47:20 +01:00
|
|
|
name: Static analysis
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
static-psalm-analysis:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-10-26 20:31:16 +02:00
|
|
|
ocp-version: [ 'dev-stable25', 'dev-stable24', 'dev-stable23' ]
|
2021-02-13 16:47:20 +01:00
|
|
|
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
|
|
|
|
coverage: none
|
2022-07-28 08:59:38 +02:00
|
|
|
- name: Update php-cs-fixer
|
|
|
|
run: composer update friendsofphp/php-cs-fixer -W
|
2021-02-13 16:47:20 +01:00
|
|
|
- name: Install dependencies
|
|
|
|
run: composer i
|
|
|
|
- name: Install dependencies
|
2022-10-26 20:35:01 +02:00
|
|
|
run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }}
|
2021-02-13 16:47:20 +01:00
|
|
|
- name: Run coding standards check
|
2022-07-28 08:59:38 +02:00
|
|
|
run: composer run psalm
|
|
|
|
|