We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a9da81 commit 49de21cCopy full SHA for 49de21c
.github/workflows/ci.yml
@@ -25,5 +25,8 @@ jobs:
25
- name: 💅 Lint
26
run: composer lint
27
28
+ - name: 🏁 Static analysis
29
+ run: composer static-analysis
30
+
31
- name: ✅ Run the tests
32
run: composer test
composer.json
@@ -15,8 +15,9 @@
15
"php": "^8.3"
16
},
17
"require-dev": {
18
- "phpunit/phpunit": "^11.1",
19
- "codelytv/coding-style": "^1.2"
+ "phpunit/phpunit": "^10",
+ "codelytv/coding-style": "^1.2",
20
+ "vimeo/psalm": "^5.24"
21
22
"autoload": {
23
"psr-4": {
@@ -33,6 +34,7 @@
33
34
"scripts": {
35
"test": "phpunit --configuration phpunit.xml",
36
"lint": "ecs check",
- "lint:fix": "ecs check --fix"
37
+ "lint:fix": "ecs check --fix",
38
+ "static-analysis": "psalm"
39
}
40
0 commit comments