Skip to content

Commit

Permalink
Merge pull request #77 from gsteel/update-ci
Browse files Browse the repository at this point in the history
Adds PHP 8.1 and 8.2 to CI
  • Loading branch information
Ocramius committed Oct 10, 2022
2 parents eb076dd + 387c7e5 commit c1ce27b
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .laminas-ci.json
Expand Up @@ -24,14 +24,38 @@
"dependencies": "locked"
}
},
{
"name": "QA Checks (latest)",
"job": {
"php": "8.1",
"command": "composer check",
"dependencies": "locked"
}
},
{
"name": "QA Checks (locked)",
"job": {
"php": "8.0",
"php": "8.1",
"command": "composer check",
"dependencies": "latest"
}
},
{
"name": "QA Checks (latest)",
"job": {
"php": "8.2",
"command": "composer check",
"dependencies": "locked"
}
},
{
"name": "QA Checks (locked)",
"job": {
"php": "8.2",
"command": "composer check",
"dependencies": "latest"
}
},
{
"name": "Lint ruleset.xml using phpcs.xsd schema",
"job": {
Expand Down

0 comments on commit c1ce27b

Please sign in to comment.