Skip to content

Commit 3b36502

Browse files
committed
feature: use minimum version to run QA checks
Signed-off-by: Maximilian Bösing <[email protected]>
1 parent 56f7277 commit 3b36502

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/create-jobs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ const fileTest = function (filename) {
2727
*/
2828
const createQaJobs = function (command, config) {
2929
return [new Job(
30-
command + ' on PHP ' + config.stable_version,
30+
command + ' on PHP ' + config.minimum_version,
3131
JSON.stringify(new Command(
3232
command,
33-
config.stable_version,
33+
config.minimum_version,
3434
config.extensions,
3535
config.php_ini,
3636
'locked',

0 commit comments

Comments
 (0)