Skip to content

chore(deps-dev): Bump phpunit/phpunit from 10.5.48 to 10.5.62 in /vendor-bin/phpunit #16

chore(deps-dev): Bump phpunit/phpunit from 10.5.48 to 10.5.62 in /vendor-bin/phpunit

chore(deps-dev): Bump phpunit/phpunit from 10.5.48 to 10.5.62 in /vendor-bin/phpunit #16

Workflow file for this run

name: Lint php-cs
on: pull_request
permissions:
contents: read
concurrency:
group: lint-php-cs-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
name: php-cs
steps:
- name: Checkout
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
with:
persist-credentials: false
- name: Set up php8.1
uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2.35.4
with:
php-version: 8.1
extensions: json, openssl
coverage: none
ini-file: development
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: composer i
- name: Lint
run: composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 1 )