the dtd actually depends on what request/response/message is about to… #257
This file contains hidden or 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 / 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', | |
| '8.4' | |
| ] | |
| 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 |