Skip to content

added cxml dtd 1.2.063 #190

added cxml dtd 1.2.063

added cxml dtd 1.2.063 #190

Workflow file for this run

name: CI / Static
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: [
'8.2',
'8.3',
]
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: pcov
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@v4
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: composer run cs-check
- name: Run PHPStan
run: composer run phpstan
- name: Run Rector
run: composer run rector-check
- name: Run Tests
run: composer run test
- name: Run Security check
run: composer run security-check