dont wrap CXmlException into CXmlProcessException #129
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |