-
Notifications
You must be signed in to change notification settings - Fork 260
35 lines (33 loc) · 1.2 KB
/
static-analysis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Static analysis
on:
pull_request:
push:
branches:
- main
- stable*
jobs:
static-psalm-analysis:
runs-on: ubuntu-latest
strategy:
matrix:
ocp-version: [ 'dev-stable24', 'dev-stable23', 'dev-stable22', 'dev-stable21' ]
name: Nextcloud ${{ matrix.ocp-version }}
steps:
- name: Checkout
uses: actions/checkout@v3
- 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 OCP package
if: ${{ matrix.ocp-version != 'dev-master' && matrix.ocp-version != 'dev-stable24' }}
run: composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }}
- name: Install OCP package
if: ${{ matrix.ocp-version == 'dev-master' || matrix.ocp-version == 'dev-stable24' }}
run: composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }} --ignore-platform-reqs
- name: Run coding standards check
run: composer run psalm