Skip to content

Bump TheDragonCode/codestyler from 4 to 5 #123

Bump TheDragonCode/codestyler from 4 to 5

Bump TheDragonCode/codestyler from 4 to 5 #123

Workflow file for this run

name: phpunit
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [ "8.2", "8.3" ]
symfony: [ "6.0", "7.0" ]
name: PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }} ${{ matrix.prefer }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv
coverage: none
- name: Install dependencies
run: |
composer require --no-interaction \
symfony/console:^${{ matrix.symfony }} \
symfony/var-dumper:^${{ matrix.symfony }} \
- name: Execute tests
run: sudo vendor/bin/phpunit