Skip to content

Expose a single way of writing architectural tests #3

Expose a single way of writing architectural tests

Expose a single way of writing architectural tests #3

Workflow file for this run

name: PHP CS Fixer
on:
push:
pull_request:
permissions:
contents: read
jobs:
cs-fixer:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- name: Install PHP
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2
with:
php-version: '8.0'
tools: composer:v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: composer update --prefer-dist --no-progress --with "phpunit/phpunit:^9.6"
- name: Run PHP CS Fixer
run: ./bin/php-cs-fixer check --diff