Skip to content

Commit 588925f

Browse files
committed
fix min php version
1 parent 6ae48dc commit 588925f

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ jobs:
2525
- name: Run linter
2626
run: make lint analyse
2727

28-
- name: Run test & publish code coverage
29-
uses: paambaati/[email protected]
30-
env:
31-
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
32-
with:
33-
coverageCommand: make test-coverage
34-
coverageLocations: ${{github.workplace}}/build/logs/clover.xml:clover
35-
debug: true
28+
- run: make test
29+
30+
# - name: Run test & publish code coverage
31+
# uses: paambaati/[email protected]
32+
# env:
33+
# CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
34+
# with:
35+
# coverageCommand: make test-coverage
36+
# coverageLocations: ${{github.workplace}}/build/logs/clover.xml:clover
37+
# debug: true

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "3.0.0",
55
"type": "library",
66
"require": {
7-
"php": ">=8.3",
7+
"php": ">=8.2",
88
"phpstan/phpstan": "^2.1",
99
"illuminate/collections": "^12"
1010
},

0 commit comments

Comments
 (0)