Skip to content

fixed order of elements #134

fixed order of elements

fixed order of elements #134

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
validation:
name: "Static PHP Validation"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: [
'7.4',
'8.0',
'8.1'
]
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none
extensions: dom, libxml, simplexml
tools: composer:v2
- name: Composer get cache directory
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Composer cache
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Composer validate
run: composer validate
- name: Composer install
run: composer install --no-scripts
- name: Run PHP Parallel Lint
run: vendor/bin/parallel-lint src/
- name: Run CodeStyle checks
run: PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix src --allow-risky=yes --diff --dry-run
- name: Run PHPStan
run: vendor/bin/phpstan analyze -clear-result-cache -c phpstan.neon src/ --no-progress
- name: Run Tests
run: vendor/bin/phpunit --testdox tests
- name: Run Security check
run: vendor/bin/security-checker security:check composer.lock