-
Notifications
You must be signed in to change notification settings - Fork 41
27 lines (25 loc) · 818 Bytes
/
static.yml
File metadata and controls
27 lines (25 loc) · 818 Bytes
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
name: Static analysis
on: [push]
jobs:
static-psalm-analysis:
runs-on: ubuntu-latest
strategy:
matrix:
ocp-version: [ "^31", "^30", "^29"]
name: Nextcloud ${{ matrix.ocp-version }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up php
uses: shivammathur/setup-php@master
with:
php-version: 8.1
coverage: none
- name: Update php-cs-fixer
run: composer update friendsofphp/php-cs-fixer -W
- name: Install dependencies
run: composer i
- name: Install dependencies
run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} symfony/service-contracts -W
- name: Run coding standards check
run: composer run psalm