Skip to content

Add HTML element assertion and support for variable resolution in ass… #7

Add HTML element assertion and support for variable resolution in ass…

Add HTML element assertion and support for variable resolution in ass… #7

Workflow file for this run

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