Skip to content

Make Symfony 7.4 compatible #72

Make Symfony 7.4 compatible

Make Symfony 7.4 compatible #72

name: test-integration
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.2', '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@master
- 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