This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
Update Symfony Minor #201
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
on: | |
pull_request: | |
push: | |
branches: ['main'] | |
name: Psalm Static analysis | |
jobs: | |
psalm: | |
name: Psalm | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
ini-values: post_max_size=256M, max_execution_time=180 | |
tools: composer, psalm | |
- name: composer install | |
run: composer install | |
- name: warmup cache | |
run: bin/console cache:warmup | |
- name: psalm | |
run: psalm |