[Backport release_3_6] Editing & Filter - Fix editing right access from popup #4884
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: "🐘 PHPStan" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- release_3_* | |
pull_request: | |
branches: | |
- master | |
- release_3_* | |
defaults: | |
run: | |
working-directory: ./lizmap | |
jobs: | |
phpstan: | |
name: "Analyze" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get composer cache directory | |
id: get-composer-cache-dir | |
run: echo "composer_cache_dir=$(composer config cache-files-dir)" >> $GITHUB_ENV | |
- name: Setup PHP with tools | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
tools: phpstan | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.composer_cache_dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: PHPStan version | |
run: phpstan -V | |
- name: Run PHPStan | |
run: phpstan analyse -c ../phpstan.neon |