We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4cfada commit b3d4607Copy full SHA for b3d4607
action.yml
@@ -105,6 +105,7 @@ runs:
105
env:
106
LocalTestPath: ${{ steps.paths.outputs.LocalTestPath }}
107
WorkingDirectory: ${{ inputs.WorkingDirectory }}
108
+ PSMODULE_TEST_PSMODULE_INPUT_Settings: ${{ inputs.Settings }}
109
with:
110
Debug: ${{ inputs.Debug }}
111
Prerelease: ${{ inputs.Prerelease }}
@@ -115,3 +116,7 @@ runs:
115
116
CodeCoverage_CoveragePercentTarget: 0
117
Path: ${{ steps.paths.outputs.TestPath }}
118
Run_Path: ${{ steps.paths.outputs.CodePath }}
119
+ Prescript: |
120
+ if ($env:PSMODULE_TEST_PSMODULE_INPUT_Settings -eq 'Module') {
121
+ Import-Module -Name '${{ steps.paths.outputs.ModuleName }}' -RequiredVersion 999.0.0
122
+ }
0 commit comments