Enh/deprecations/next #5286
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2021 Nextcloud contributors | |
# SPDX-License-Identifier: AGPL-3.0-or-later | |
name: Static analysis | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- next | |
- stable* | |
jobs: | |
psalm-master: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ocp-version: ['master'] | |
php-versions: ['8.1', '8.2', '8.3'] | |
name: Psalm | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup composer and PHP | |
uses: ./.github/actions/setup-composer | |
with: | |
php-version: ${{ matrix.php-versions }} | |
php-tools: composer | |
- name: Install Nextcloud API | |
run: composer require --dev nextcloud/ocp:dev-${{ matrix.ocp-version }} | |
- name: Install symfony/console | |
run: composer require symfony/console | |
- name: Run coding standards check | |
run: composer run psalm |