Skip to content

Commit

Permalink
ci: enable powershell testing
Browse files Browse the repository at this point in the history
  • Loading branch information
reubenmiller committed Feb 22, 2024
1 parent 9fbe831 commit 7f2c7c9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
test-pwsh:
runs-on: ${{ matrix.os }}
needs: [build]
if: ${{ false }}
if: ${{ true }}
env:
C8Y_HOST: ${{ secrets.C8Y_HOST }}
C8Y_TENANT: ${{ secrets.C8Y_TENANT }}
Expand Down Expand Up @@ -177,7 +177,10 @@ jobs:
runs-on: ubuntu-latest
needs: [test-pwsh]
# Disabled as pester does not support junit reports (only nunit)
if: always() && false
if: always() && true
permissions:
checks: write
pull-requests: write
strategy:
fail-fast: false
matrix:
Expand All @@ -190,10 +193,9 @@ jobs:
path: test-results-${{ matrix.os }}

- name: Publish results
uses: EnricoMi/publish-unit-test-result-action@v1.1
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
check_name: Test Results
github_token: ${{ secrets.GITHUB_TOKEN }}
files: test-results-${{ matrix.os }}/*.xml
log_level: DEBUG

0 comments on commit 7f2c7c9

Please sign in to comment.