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 a27f58c commit fe457c7Copy full SHA for fe457c7
.github/workflows/code-style.yml
@@ -0,0 +1,18 @@
1
+name: "Code Style"
2
+on: [pull_request]
3
+
4
+jobs:
5
+ code_style:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v2
9
10
+ - name: Validate composer.json and composer.lock
11
+ run: composer validate --strict
12
13
+ - name: "Laravel Pint"
14
+ uses: aglipanci/laravel-pint-action@2.0.0
15
+ with:
16
+ verboseMode: true
17
+ testMode: true
18
+ configPath: "./pint.json"
.github/workflows/php.yml
0 commit comments