Merge pull request #410 from arawa/chore/update_npm_packages #118
This file contains hidden or 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: [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 | |