Add HTML element assertion and support for variable resolution in ass… #7
Workflow file for this run
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 | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| name: PHP ${{ matrix.php }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: ['8.4'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: curl, mbstring, json | |
| coverage: none | |
| tools: composer:v2 | |
| - name: Install dependencies | |
| uses: ramsey/composer-install@v3 | |
| - name: PHPStan result cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/phpstan | |
| key: phpstan-${{ matrix.php }}-${{ github.sha }} | |
| restore-keys: | | |
| phpstan-${{ matrix.php }}- | |
| - name: PHP CS Fixer (dry run) | |
| run: composer cs | |
| - name: PHPStan | |
| run: composer stan -- --memory-limit=512M | |
| - name: PHPUnit | |
| run: composer test |