Skip to content

Release v2.2.0

Release v2.2.0 #16

Workflow file for this run

name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
php: ['8.2', '8.3', '8.4', '8.5']
symfony: ['6', '7']
name: PHP ${{ matrix.php }} Symfony ${{ matrix.symfony }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Installing PHP
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php }}
extensions: mbstring, json
tools: composer:v2
- name: Lock Symfony Version
run: |
composer require "symfony/process:${{ matrix.symfony }}.*" --no-update -v
composer require --dev "symfony/filesystem:${{ matrix.symfony }}.*" --no-update -v
- name: Composer Install
run: composer install --prefer-dist --no-progress --no-interaction
- name: Run Tests
run: php vendor/bin/phpunit --testdox