Skip to content

Bump phpunit/phpunit from 12.1.3 to 12.5.8 #28

Bump phpunit/phpunit from 12.1.3 to 12.5.8

Bump phpunit/phpunit from 12.1.3 to 12.5.8 #28

Workflow file for this run

name: Linting
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
php_linting:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.4', '8.5' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: cs2pr, phpcs
- name: Run phpcs
run: phpcs -q --report=checkstyle --standard=phpcs.xml src tests | cs2pr