3636 image : ${{ matrix.docker_container }}
3737 mapping_path : ' c:\map'
3838 entrypoint : powershell.exe
39- entrypoint_args : ' -NoLogo -NonInteractive -NoProfile -OutputFormat Text '
39+ entrypoint_args : ' -NoLogo -NonInteractive -NoProfile'
4040 env_names : TEST_MAPPING_PATH
4141 run : >-
4242 c:\map\test\run_test.ps1 -testPath "c:\map\test\run_default.Tests.ps1";
5757 with :
5858 image : ${{ matrix.docker_container }}
5959 entrypoint : powershell.exe
60- entrypoint_args : ' -NoLogo -NonInteractive -NoProfile -OutputFormat Text '
60+ entrypoint_args : ' -NoLogo -NonInteractive -NoProfile'
6161 mapping_path : ' c:\map'
6262 env_names : TEST1, TEST2, TEST3
6363 run : >-
6868 with :
6969 image : ${{ matrix.docker_container }}
7070 entrypoint : powershell.exe
71- entrypoint_args : ' -NoLogo -NonInteractive -NoProfile -OutputFormat Text '
71+ entrypoint_args : ' -NoLogo -NonInteractive -NoProfile'
7272 mapping_path : ' c:\map'
7373 run : >-
7474 c:\map\test\run_test.ps1 -testPath "c:\map\test\default_environment.Tests.ps1";
8080 mapping_path : ' c:\map'
8181 work_path : ' c:\temp'
8282 entrypoint : powershell.exe
83- entrypoint_args : ' -NoLogo -NonInteractive -NoProfile -OutputFormat Text '
83+ entrypoint_args : ' -NoLogo -NonInteractive -NoProfile'
8484 memory : 3GB
8585 run : >-
8686 c:\map\test\run_test.ps1 -testPath "c:\map\test\work_path.Tests.ps1";
9292 mapping_path : ' c:\mapping'
9393 work_path : ' c:\temp'
9494 entrypoint : powershell.exe
95- entrypoint_args : ' -NoLogo -NonInteractive -NoProfile -OutputFormat Text '
95+ entrypoint_args : ' -NoLogo -NonInteractive -NoProfile'
9696 memory : 3GB
9797 run : >-
9898 c:\mapping\test\run_test.ps1 -testPath "c:\mapping\test\mapping_path.Tests.ps1";
@@ -104,7 +104,7 @@ jobs:
104104 mapping_path : ' c:\map'
105105 workspace_path : ${{ github.workspace }}/test
106106 entrypoint : powershell.exe
107- entrypoint_args : ' -NoLogo -NonInteractive -NoProfile -OutputFormat Text '
107+ entrypoint_args : ' -NoLogo -NonInteractive -NoProfile'
108108 memory : 3GB
109109 env_names : TEST_MAPPING_PATH
110110 run : >-
@@ -118,23 +118,23 @@ jobs:
118118 steps :
119119 - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
120120 - name : Install
121- shell : pwsh -NoLogo -NonInteractive -NoProfile -OutputFormat Text - Command ". '{0}'"
121+ shell : pwsh -NoLogo -NonInteractive -NoProfile -Command ". '{0}'"
122122 run : >-
123123 Set-PSRepository -Name 'PSGallery' -InstallationPolicy Trusted;
124124 Install-Module -Name Pester -Force -SkipPublisherCheck;
125125 Update-Module -Name Pester -Force;
126126 Install-Module -Name PSScriptAnalyzer -Force;
127127 Import-Module PSScriptAnalyzer -ErrorAction Stop
128128 - name : Linter src
129- shell : pwsh -NoLogo -NonInteractive -NoProfile -OutputFormat Text - Command ". '{0}'"
129+ shell : pwsh -NoLogo -NonInteractive -NoProfile -Command ". '{0}'"
130130 run : >-
131131 Invoke-ScriptAnalyzer -Path src -EnableExit;
132132 - name : Linter test
133- shell : pwsh -NoLogo -NonInteractive -NoProfile -OutputFormat Text - Command ". '{0}'"
133+ shell : pwsh -NoLogo -NonInteractive -NoProfile -Command ". '{0}'"
134134 run : >-
135135 Invoke-ScriptAnalyzer -Path test -EnableExit;
136136 - name : Test-Action-Scripts
137- shell : pwsh -NoLogo -NonInteractive -NoProfile -OutputFormat Text - Command ". '{0}'"
137+ shell : pwsh -NoLogo -NonInteractive -NoProfile -Command ". '{0}'"
138138 run : >-
139139 Set-Location src;
140140 $config=New-PesterConfiguration;
0 commit comments