Skip to content

Bump phpunit/phpunit from 9.6.11 to 10.3.4 #36

Bump phpunit/phpunit from 9.6.11 to 10.3.4

Bump phpunit/phpunit from 9.6.11 to 10.3.4 #36

Workflow file for this run

name: PHPMD
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
phpmd:
name: PHPMD
runs-on: ubuntu-latest
strategy:
matrix:
php-versions:
- '8.1'
- '8.2'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Validate composer.json and composer.lock
run: composer validate --no-check-publish
- name: Install Composer dependencies
uses: ramsey/composer-install@v2
- name: PHPMD
run: php vendor/bin/phpmd --strict src/ text phpmd.xml