Bump symfony/http-client from 6.4.2 to 6.4.14 #595
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: CI | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
coverage: none | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download dependencies | |
uses: ramsey/composer-install@v3 | |
- name: Docker | |
run: docker compose up -d | |
- name: Download dependencies | |
run: composer install --no-interaction --optimize-autoloader | |
- name: Setup database | |
run: bin/console doctrine:migrations:migrate --no-interaction | |
- name: Run tests | |
run: ./vendor/bin/phpunit | |
- name: Upload log file | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test.log | |
path: var/log/test.log | |
retention-days: 5 | |
phpstan: | |
name: PHPStan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
coverage: none | |
tools: phpstan:1.10, cs2pr | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download dependencies | |
uses: ramsey/composer-install@v3 | |
- name: PHPStan | |
run: phpstan analyze --no-progress --error-format=checkstyle | cs2pr | |
php-cs-fixer: | |
name: PHP-CS-Fixer | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
coverage: none | |
tools: php-cs-fixer:3.64, cs2pr | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: PHP-CS-Fixer | |
run: php-cs-fixer fix --dry-run --format=checkstyle | cs2pr | |
psalm: | |
name: Psalm | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
coverage: none | |
tools: vimeo/psalm:5.18.0 | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download dependencies | |
uses: ramsey/composer-install@v3 | |
- name: Psalm | |
run: psalm --no-progress --output-format=github |