Skip to content

Commit

Permalink
Merge pull request #396 from akv-platform/v-sedoli/issue-241
Browse files Browse the repository at this point in the history
Add warning if python version set to empty value
  • Loading branch information
marko-zivic-93 committed May 4, 2022
2 parents ae11205 + 8f73c14 commit fd8f0a9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dist/setup/index.js
Expand Up @@ -6112,6 +6112,9 @@ function run() {
yield cacheDependencies(cache, pythonVersion);
}
}
else {
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');
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
}
Expand Down
4 changes: 4 additions & 0 deletions src/setup-python.ts
Expand Up @@ -53,6 +53,10 @@ async function run() {
if (cache && isCacheFeatureAvailable()) {
await cacheDependencies(cache, pythonVersion);
}
} else {
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');
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
Expand Down

0 comments on commit fd8f0a9

Please sign in to comment.