doc: update README.md #36
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: 'Tests' | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '.gitignore' | |
| - 'CHANGELOG.md' | |
| - 'LICENSE' | |
| - 'README.md' | |
| pull_request: | |
| paths-ignore: | |
| - '.gitignore' | |
| - 'CHANGELOG.md' | |
| - 'LICENSE' | |
| - 'README.md' | |
| jobs: | |
| tests: | |
| name: Tests (PHP ${{ matrix.php }}, OS ${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| php: [8.1, 8.2, 8.3, 8.4] | |
| env: | |
| extensions: xdebug | |
| steps: | |
| - name: Check Out Code | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP ${{ matrix.php }} | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: dom, sockets, grpc, curl ${{ matrix.extensions-suffix }} | |
| - name: Validate composer.json and composer.lock | |
| run: composer validate --strict | |
| - name: Install dependencies with composer | |
| uses: ramsey/composer-install@v3 | |
| with: | |
| dependency-versions: ${{ matrix.dependencies }} | |
| - name: Validate lowest dependencies | |
| if: matrix.dependencies == 'lowest' && matrix.php == '8.1' | |
| env: | |
| COMPOSER_POOL_OPTIMIZER: 0 | |
| run: vendor/bin/validate-prefer-lowest | |
| - name: Run tests with Phpunit | |
| run: | | |
| XDEBUG_MODE=coverage php vendor/bin/phpunit --testsuite unit |