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.
2 parents aac8520 + 593fa46 commit 5b1d701Copy full SHA for 5b1d701
.github/workflows/testing-pull-request.yaml
@@ -0,0 +1,15 @@
1
+name: Testing Pull Request
2
+on:
3
+ pull_request:
4
+ types: [synchronize, opened, reopened]
5
+jobs:
6
+ pint:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ with:
11
+ fetch-depth: 0
12
+ - name: Install Dependencies
13
+ run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --prefer-dist
14
+ - name: Laravel Pint Dry Run
15
+ run: ./vendor/bin/pint -v --test
0 commit comments