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 016d7b8 commit 252bd9bCopy full SHA for 252bd9b
.github/workflows/ci.yml
@@ -15,6 +15,25 @@ jobs:
15
- name: Validate composer.json
16
run: composer validate --strict --no-check-lock
17
18
+ static_analysis:
19
+ name: Static analysis
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v4
23
+
24
+ - uses: shivammathur/setup-php@v2
25
+ with:
26
+ coverage: none
27
+ php-version: '8.2'
28
29
+ - name: Install dependencies
30
+ run: composer update --ansi --no-progress --prefer-dist --no-interaction
31
32
+ - name: Install PHPUnit
33
+ run: vendor/bin/simple-phpunit install
34
35
+ - run: vendor/bin/phpstan analyze
36
37
tests:
38
name: "Tests on PHP ${{ matrix.php }}${{ matrix.name_suffix }}"
39
runs-on: ubuntu-latest
0 commit comments