Skip to content

Remove support for MtHAML #54

Remove support for MtHAML

Remove support for MtHAML #54

Workflow file for this run

name: Code
on:
push:
pull_request:
workflow_dispatch:
jobs:
code:
name: Code analyse on ${{ matrix.php }} (${{ matrix.deps_strategy }} dependencies)
runs-on: ubuntu-latest
strategy:
matrix:
deps_strategy: [ '', '--prefer-lowest' ]
php: [ '8.1', '8.2', '8.3', '8.4' ]
symfony: [ ^3.0, ^4.0, ^5.0, ^6.0, ^7.0 ]
exclude:
- php: '8.1'
symfony: ^7.0
steps:
- name: Update code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
- name: Install dependencies
run: composer update ${{ matrix.deps_strategy }} --with symfony/yaml:${{ matrix.symfony }}
- name: Code style
run: vendor/bin/php-cs-fixer fix --ansi --allow-risky=yes --dry-run
env:
PHP_CS_FIXER_IGNORE_ENV: 1
- name: Code quality
run: vendor/bin/phpstan analyse --no-progress --ansi