We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6defb42 commit 6e0352fCopy full SHA for 6e0352f
1 file changed
.github/workflows/code-style-lint.yml
@@ -11,7 +11,15 @@ jobs:
11
- name: Checkout code
12
uses: actions/checkout@v4
13
14
+ - name: Get changed files
15
+ id: changed-files
16
+ uses: tj-actions/changed-files@v46
17
+ with:
18
+ files: |
19
+ **.php
20
+
21
- name: Check PHP code style issues
22
+ if: steps.changed-files.outputs.any_modified == 'true'
23
uses: aglipanci/laravel-pint-action@v2
24
with:
25
testMode: true
0 commit comments