List/Show: be able to add actions to a dropdown 2le/crudit#421 #254
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: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
phpstan: | |
name: "PHPStan ${{ matrix.php-version }}" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php_version: [8.1] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: "Install dependencies with Composer" | |
uses: php-actions/composer@v6 | |
with: | |
php_version: ${{ matrix.php_version }} | |
version: 2 | |
args: --profile --ignore-platform-reqs | |
- name: 'PHPStan Static Analysis' | |
uses: php-actions/phpstan@v3 | |
with: | |
configuration: tests/phpstan.neon | |
memory_limit: 256M |