Skip to content

Commit

Permalink
Update infection/infection requirement from ^0.25.1 to ^0.26.0 (#49)
Browse files Browse the repository at this point in the history
Updates the requirements on [infection/infection](https://github.com/infection/infection) to permit the latest version.
- [Release notes](https://github.com/infection/infection/releases)
- [Changelog](https://github.com/infection/infection/blob/master/CHANGELOG.md)
- [Commits](infection/infection@0.25.1...0.26.0)

---
updated-dependencies:
- dependency-name: infection/infection
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: Simon Podlipsky <simon@podlipsky.net>
  • Loading branch information
dependabot[bot] and simPod committed Jan 11, 2022
1 parent 4e3508e commit 73c0434
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/infection.yaml
Expand Up @@ -35,6 +35,6 @@ jobs:
uses: "ramsey/composer-install@v1"

- name: Run Infection
run: vendor/bin/roave-infection-static-analysis-plugin --min-msi=26 --min-covered-msi=50 --log-verbosity=none -s
run: vendor/bin/roave-infection-static-analysis-plugin --threads=$(nproc)
env:
INFECTION_BADGE_API_KEY: ${{ secrets.INFECTION_BADGE_API_KEY }}
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -24,7 +24,7 @@
},
"require-dev": {
"doctrine/coding-standard": "^9.0",
"infection/infection": "^0.25.1",
"infection/infection": "^0.26.0",
"kwn/php-rdkafka-stubs": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12.69",
Expand Down
11 changes: 7 additions & 4 deletions infection.json.dist
@@ -1,5 +1,5 @@
{
"bootstrap":"./tests/bootstrap.php",
"bootstrap":" ./tests/bootstrap.php",
"timeout": 10,
"source": {
"directories": [
Expand All @@ -10,9 +10,12 @@
"@default": true
},
"logs": {
"badge": {
"branch": "master"
"html": "infection.html",
"stryker": {
"report": "master"
},
"text": "infection-log.txt"
}
},
"minMsi": 28,
"minCoveredMsi": 85
}

0 comments on commit 73c0434

Please sign in to comment.