Skip to content

Fix issue with abstract method #3580

Fix issue with abstract method

Fix issue with abstract method #3580

Workflow file for this run

on: ["push", "pull_request"]
name: Main Workflow
jobs:
run:
name: Run
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ 7.4, 8.0, 8.1, 8.2 ]
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Checkout
uses: actions/checkout@v3
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHP Code Sniffer
run: vendor/bin/phpcs .
- name: Make sure project files are compilable
run: find -L . -path ./vendor -prune -o -path ./tests -prune -o -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l
- name: Run PHPUnit
run: vendor/bin/phpunit