Bump twig/twig from 3.10.3 to 3.14.0 #178
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: [ push, pull_request ] | |
jobs: | |
static-analysis-phpstan: | |
name: "Static Analysis with PHPStan" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.3" | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v4" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php-version }}" | |
- name: "Cache dependencies installed with composer" | |
uses: "actions/cache@v4" | |
with: | |
path: "~/.composer/cache" | |
key: "php-${{ matrix.php-version }}-composer-locked-${{ hashFiles('composer.lock') }}" | |
restore-keys: "php-${{ matrix.php-version }}-composer-locked-" | |
- name: "Install dependencies with composer" | |
run: "composer install --no-interaction --no-progress" | |
# Install phpunit to fix "Class PHPUnit\Framework\TestCase not found." | |
- name: "Install phpunit for phpstan" | |
run: "php bin/phpunit install" | |
- name: "Run a static analysis with phpstan/phpstan" | |
run: "vendor/bin/phpstan analyse" |