Skip to content

Merge pull request #19 from mailcarrierapp/feat/filament-v3 #123

Merge pull request #19 from mailcarrierapp/feat/filament-v3

Merge pull request #19 from mailcarrierapp/feat/filament-v3 #123

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
jobs:
pint:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Install dependencies
run: composer install --no-interaction
- name: Run Pint
run: ./vendor/bin/pint --test