Skip to content

chore(deps): Bump nikic/php-parser from 4.19.5 to 5.7.0 #526

chore(deps): Bump nikic/php-parser from 4.19.5 to 5.7.0

chore(deps): Bump nikic/php-parser from 4.19.5 to 5.7.0 #526

Workflow file for this run

name: CI
permissions: read-all
on:
push:
branches:
- master
pull_request:
jobs:
tests:
name: Tests on PHP ${{ matrix.php }}
runs-on: ubuntu-24.04
strategy:
matrix:
php: ['8.4']
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # 2.37.1
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
- name: Configure PHPUnit matchers
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Run tests
run: ./vendor/bin/phpunit --verbose --colors