Skip to content

Update formatting GH Action #11

Update formatting GH Action

Update formatting GH Action #11

Workflow file for this run

name: Formatting
on:
push:
pull_request:
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.3"
tools: composer:v2
coverage: none
- name: Install dependencies
run: composer update --prefer-stable --prefer-dist --no-interaction
- name: Check code formatting
run: ./vendor/bin/pint --test -v