We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42b28f5 commit 257e373Copy full SHA for 257e373
1 file changed
.github/workflows/php.yml
@@ -0,0 +1,22 @@
1
+name: PHP
2
+
3
+on: [pull_request]
4
5
+jobs:
6
+ lint:
7
+ name: Lint
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v3
12
13
+ - name: Setup PHP
14
+ uses: shivammathur/setup-php@v2
15
+ with:
16
+ php-version: 8.2
17
18
+ - name: Install dependencies
19
+ run: composer build:dev
20
21
+ - name: Validate against coding standards
22
+ run: composer lint
0 commit comments