mirror of https://github.com/actions/setup-python
Formatting
This commit is contained in:
parent
e31727ce0a
commit
8f73c1495f
|
@ -6113,7 +6113,7 @@ function run() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
core.warning("Step input 'python-version' is not set, the OS native python version will be used");
|
core.warning('The `python-version` input is not set. The version of Python currently in `PATH` will be used.');
|
||||||
}
|
}
|
||||||
const matchersPath = path.join(__dirname, '../..', '.github');
|
const matchersPath = path.join(__dirname, '../..', '.github');
|
||||||
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
|
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
|
||||||
|
|
|
@ -55,7 +55,7 @@ async function run() {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
core.warning(
|
core.warning(
|
||||||
"The `python-version` input is not set. The version of Python currently in `PATH` will be used."
|
'The `python-version` input is not set. The version of Python currently in `PATH` will be used.'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
const matchersPath = path.join(__dirname, '../..', '.github');
|
const matchersPath = path.join(__dirname, '../..', '.github');
|
||||||
|
|
Loading…
Reference in New Issue