Merge pull request #2999 from nextcloud/dependabot/npm_and_yarn/core-… #3508
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
name: Static analysis | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- stable* | |
jobs: | |
psalm-master: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ocp-version: ['stable27'] | |
php-versions: ['8.0', '8.1', '8.2'] | |
name: Psalm | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup composer and PHP | |
uses: ./.github/actions/setup-composer | |
with: | |
php-version: ${{ matrix.php-versions }} | |
php-tools: composer, psalm | |
- name: Install Nextcloud API | |
run: composer require --dev nextcloud/ocp:dev-${{ matrix.ocp-version }} | |
- name: Run coding standards check | |
run: composer run psalm |