Skip to content

Commit 0e59786

Browse files
committed
Add Pint check to CI action
1 parent 4a692ff commit 0e59786

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ jobs:
1717
- laravel: 11.*
1818
testbench: 9.*
1919
larastan: 3.*
20+
pint: 1.*
2021
- laravel: 12.*
2122
testbench: 10.*
2223
larastan: 3.*
24+
pint: 1.*
2325

2426
name: CI - PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2527
steps:
@@ -46,8 +48,12 @@ jobs:
4648
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
4749
composer require "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update --dev
4850
composer require "larastan/larastan:${{ matrix.larastan }}" --no-interaction --no-update --dev
51+
composer require "laravel/pint:${{ matrix.pint }}" --no-interaction --no-update --dev
4952
composer update --prefer-dist --no-interaction --no-suggest --dev
5053
composer dump
5154
5255
- name: Run Larastan
5356
run: composer static-analysis
57+
58+
- name: Run Pint
59+
run: composer check-style

0 commit comments

Comments
 (0)