Skip to content

Commit f37b02a

Browse files
🩹 [Patch]: Add status for module test on windows-pwsh (#50)
## Description - Add status for module test on windows-pwsh ## Type of change <!-- Use the check-boxes [x] on the options that are relevant. --> - [ ] 📖 [Docs] - [ ] 🪲 [Fix] - [x] 🩹 [Patch] - [ ] ⚠️ [Security fix] - [ ] 🚀 [Feature] - [ ] 🌟 [Breaking change] ## Checklist <!-- Use the check-boxes [x] on the options that are relevant. --> - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas
1 parent d8aeb04 commit f37b02a

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,11 @@ jobs:
286286
Path: ${{ inputs.ModulesOutputPath }}
287287
TestType: Module
288288

289+
- name: Status
290+
shell: pwsh
291+
run: |
292+
Write-Host "Passed: [${{ steps.test.outputs.passed }}]"
293+
289294
- name: Failed test
290295
if: steps.test.outcome != 'success'
291296
shell: pwsh

.github/workflows/workflow.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,11 @@ jobs:
297297
Path: ${{ inputs.ModulesOutputPath }}
298298
TestType: Module
299299

300+
- name: Status
301+
shell: pwsh
302+
run: |
303+
Write-Host "Passed: [${{ steps.test.outputs.passed }}]"
304+
300305
- name: Failed test
301306
if: steps.test.outcome != 'success'
302307
shell: pwsh

0 commit comments

Comments
 (0)