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 aed9219 commit b164a4fCopy full SHA for b164a4f
.github/workflows/php82.yml
@@ -0,0 +1,34 @@
1
+name: PHP 8.1
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v2
15
16
+ - name: Setup PHP Action
17
+ uses: shivammathur/[email protected]
18
+ with:
19
+ php-version: '8.2'
20
21
+ - name: Validate composer.json and composer.lock
22
+ run: composer validate
23
24
+ - name: Install dependencies
25
+ run: composer install --prefer-dist --no-progress
26
27
+ - name: Run style check
28
+ run: composer run style
29
30
+ - name: Run static analyzer
31
+ run: composer run stan
32
33
+ - name: Run tests
34
+ run: composer run test
0 commit comments