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 cdbc740 commit b80307dCopy full SHA for b80307d
.github/workflows/pint.yml
@@ -0,0 +1,21 @@
1
+name: PHP Linting
2
+on:
3
+ pull_request:
4
+ push:
5
+ branches:
6
+ - master
7
+jobs:
8
+ phplint:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - name: "laravel-pint"
13
+ uses: aglipanci/laravel-pint-action@2.0.0
14
+ with:
15
+ preset: laravel
16
+ verboseMode: true
17
+ testMode: false
18
+ onlyDirty: true
19
+ - uses: stefanzweifel/git-auto-commit-action@v5
20
21
+ commit_message: "fix: pint"
pint.json
@@ -0,0 +1,3 @@
+{
+ "preset": "laravel"
+}
0 commit comments