File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -206,6 +206,24 @@ jobs:
206
206
run : |
207
207
pwsh -NoLogo -NonInteractive -NoProfile -Command '$VerbosePreference = "Continue"; ./test/test.ps1'
208
208
209
+ test-powershell-7_5-container :
210
+ runs-on : ubuntu-latest
211
+ container :
212
+ image : theohbrothers/docker-powershell:7.5-ubuntu-24.04-git
213
+ steps :
214
+ - uses : actions/checkout@v1
215
+ with :
216
+ submodules : recursive
217
+ - name : Powershell version
218
+ run : |
219
+ pwsh -NoLogo -NonInteractive -NoProfile -Command '$PSVersionTable'
220
+ - name : Ignore git permissions
221
+ run : |
222
+ git config --global --add safe.directory "$( pwd )"
223
+ - name : Test
224
+ run : |
225
+ pwsh -NoLogo -NonInteractive -NoProfile -Command '$VerbosePreference = "Continue"; ./test/test.ps1'
226
+
209
227
release :
210
228
needs :
211
229
- test-powershell-core-linux
@@ -220,6 +238,7 @@ jobs:
220
238
- test-powershell-7_2-container
221
239
- test-powershell-7_3-container
222
240
- test-powershell-7_4-container
241
+ - test-powershell-7_5-container
223
242
runs-on : ubuntu-latest
224
243
container :
225
244
image : theohbrothers/docker-powershell:7.2-ubuntu-22.04-git
You can’t perform that action at this time.
0 commit comments