Skip to content

fix missing ")" on query selector (#432) #174

fix missing ")" on query selector (#432)

fix missing ")" on query selector (#432) #174

Workflow file for this run

name: PHPUnit
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: [ '8.1' ]
phpunit-versions: [ 'latest' ]
name: PHP ${{ matrix.php-versions }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, ctype, fileinfo, openssl, PDO, bcmath, json, tokenizer, xml
tools: phpunit:${{ matrix.phpunit-versions }}
coverage: none
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: |
composer update --prefer-dist --no-interaction --no-suggest
- name: Run test suite
run: composer run-script test