Update for base library v4 #2
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
# Workflow name | |
name: Static Analysis | |
# Triggers | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- 'main' | |
# Jobs/Pipelines | |
jobs: | |
phpstan: | |
name: 'PHP Stan' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ 7.4, 8.1, 8.2, 8.3 ] | |
steps: | |
- name: "Checkout Code" | |
uses: actions/checkout@v4 | |
- name: "Setup PHP with tools" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php }}" | |
tools: composer, phpstan | |
- name: "Get composer cache directory" | |
id: composer-cache | |
run: 'echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT' | |
- name: "Cache dependencies" | |
uses: actions/cache@v4 | |
with: | |
path: "${{ steps.composer-cache.outputs.dir }}" | |
key: "${{ runner.os }}-php-${{ matrix.php}}-composer-${{ hashFiles('**/composer.json') }}" | |
restore-keys: "${{ runner.os }}-php-${{ matrix.php}}-composer-" | |
- name: "Install Composer dependencies" | |
run: composer install --no-ansi --no-interaction --no-progress --no-scripts --prefer-dist | |
- name: "Run PHPStan Static Analysis" | |
run: phpstan analyse |