Skip to content

Upgrade packages & make compatible with Symfony 7.4 #53

Upgrade packages & make compatible with Symfony 7.4

Upgrade packages & make compatible with Symfony 7.4 #53

name: test-integration
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.2', '8.3', '8.4', '8.5']
timeout-minutes: 30
name: PHP ${{ matrix.php-versions }} on Ubuntu latest.
steps:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Checkout
uses: actions/checkout@v6
- name: Install dependencies
run: composer install
- name: Run CI tests
run: composer check-ci
- name: Output log files on failure
if: failure()
run: tail -2000 /var/log/syslog