diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8f351d85..e6dfd7af 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -286,6 +286,11 @@ jobs: Path: ${{ inputs.ModulesOutputPath }} TestType: Module + - name: Status + shell: pwsh + run: | + Write-Host "Passed: [${{ steps.test.outputs.passed }}]" + - name: Failed test if: steps.test.outcome != 'success' shell: pwsh diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 1abe554b..eb03214f 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -297,6 +297,11 @@ jobs: Path: ${{ inputs.ModulesOutputPath }} TestType: Module + - name: Status + shell: pwsh + run: | + Write-Host "Passed: [${{ steps.test.outputs.passed }}]" + - name: Failed test if: steps.test.outcome != 'success' shell: pwsh