Skip to content

Commit bdde785

Browse files
committed
php 8.5
1 parent 98850b7 commit bdde785

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/sonarqube.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
os: [ubuntu-24.04]
9-
php: ["8.4"]
9+
php: ["8.5"]
1010
env:
1111
tools: composer
1212
ini-values: default_charset='UTF-8'

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
os: [ubuntu-24.04]
9-
php: ["8.1", "8.2", "8.3", "8.4"]
9+
php: ["8.1", "8.2", "8.3", "8.4", "8.5"]
1010
include:
1111
- php: "8.1"
1212
infection: "0.29.9"
@@ -16,6 +16,9 @@ jobs:
1616
infection: "latest"
1717
- php: "8.4"
1818
infection: "latest"
19+
- php: "8.5"
20+
infection: "latest"
21+
skip-mutation: true
1922
env:
2023
tools: composer, phpstan, infection:${{ matrix.infection }}
2124
ini-values: default_charset='UTF-8'
@@ -52,11 +55,8 @@ jobs:
5255
- name: Tests (PHPUnit)
5356
run: vendor/bin/phpunit --coverage-xml=build/logs/xml-coverage --log-junit=build/logs/junit.xml
5457
- name: Mutation testing (Infection)
58+
if: ${{ matrix.skip-mutation != true }}
5559
env:
5660
INFECTION_BADGE_API_KEY: ${{ secrets.INFECTION_BADGE_API_KEY }}
5761
run: |
58-
if [ "${{ matrix.php }}" = "8.1" ]; then
59-
infection --coverage=build/logs --min-covered-msi=90 --threads=$(nproc) --logger-github --only-covered
60-
else
61-
infection --coverage=build/logs --min-covered-msi=90 --threads=$(nproc) --logger-github
62-
fi
62+
infection --coverage=build/logs --min-covered-msi=90 --threads=$(nproc) --logger-github

0 commit comments

Comments
 (0)