Skip to content

Update files

Update files #122

Workflow file for this run

name: "Symfony 6"
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [ "8.0", "8.1" ]
symfony: [ "6.0" ]
name: PHP ${{ matrix.php }}
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 symfony/finder:^${{ matrix.symfony }}
- name: Execute tests
run: sudo vendor/bin/phpunit --colors=always