Skip to content

Commit eedba31

Browse files
committed
Adjust CI Tests and update composer.json
The CI Tests have been modified to only trigger on pull requests and pushes to the master branch. Also, the composer.json file has been updated to allow the phpstan/extension-installer plugin alongside the infection/extension-installer. This ensures that our testing workflow is not unnecessarily triggered and aligns our composer settings with the additional plugin. Signed-off-by: Marcel Strahl <info@marcel-strahl.de>
1 parent f234ba4 commit eedba31

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: "CI Tests"
22

33
on:
4-
pull_request:
5-
push:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
68

79
jobs:
810
php81:

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
"config": {
3434
"sort-packages": true,
3535
"allow-plugins": {
36-
"infection/extension-installer": true
36+
"infection/extension-installer": true,
37+
"phpstan/extension-installer": true
3738
}
3839
},
3940
"prefer-stable": true,

0 commit comments

Comments
 (0)