Change php-lint-summary to lint-summary #10696
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
name: Static analysis | |
on: pull_request | |
permissions: | |
contents: read | |
jobs: | |
static-psalm-analysis: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ocp-version: [ 'dev-stable26', 'dev-stable25' ] | |
name: Nextcloud ${{ matrix.ocp-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up php | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 7.4 | |
coverage: none | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install dependencies | |
run: composer i | |
- name: Install OCP package | |
run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} --ignore-platform-reqs | |
- name: Run coding standards check | |
run: composer run psalm | |
summary: | |
runs-on: ubuntu-latest | |
needs: | |
- static-psalm-analysis | |
if: always() | |
name: static-analysis-summary | |
steps: | |
- name: Static analysis status | |
run: if ${{ needs.static-psalm-analysis.result != 'success' && needs.static-psalm-analysis.result != 'skipped' }}; then exit 1; fi |