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.
pint
1 parent cfcb5e0 commit 62d5737Copy full SHA for 62d5737
.github/workflows/pint.yml
@@ -0,0 +1,34 @@
1
+name: Pint
2
+
3
+on:
4
+ workflow_dispatch:
5
+ pull_request:
6
+ branches:
7
+ - master
8
+ push:
9
10
11
12
+concurrency:
13
+ group: ${{ github.workflow }}-${{ github.ref_name }}
14
+ cancel-in-progress: true
15
16
+permissions: {}
17
18
+jobs:
19
+ pint:
20
+ runs-on: ubuntu-latest
21
+ permissions:
22
+ contents: read
23
+ steps:
24
+ - uses: actions/checkout@v4
25
26
+ - uses: shivammathur/setup-php@v2
27
+ with:
28
+ php-version: '8.4'
29
+ tools: pint:1
30
+ coverage: none
31
+ env:
32
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
34
+ - run: composer lint
0 commit comments