2021-02-13 16:47:20 +01:00
|
|
|
name: Static analysis
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
static-psalm-analysis:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-07-07 09:28:15 +02:00
|
|
|
ocp-version: [ 'dev-stable27', 'dev-stable26', 'dev-stable25' ]
|
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:
|
2023-04-26 19:03:52 +02:00
|
|
|
php-version: 8.1
|
2021-02-13 16:47:20 +01:00
|
|
|
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
|
2023-07-27 13:15:52 +02:00
|
|
|
run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} psr/container symfony/service-contracts
|
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
|
|
|
|
|