Skip to content

Restore PSGSuite release pipeline and enable new maintainers #14

Restore PSGSuite release pipeline and enable new maintainers

Restore PSGSuite release pipeline and enable new maintainers #14

name: PowerShell - Build Test Deploy
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
name: Build Module
runs-on: windows-latest
needs: []
timeout-minutes: 120
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build Module
shell: pwsh
run: |
. ./build.ps1
- name: Collect BuildOutput directory
uses: actions/upload-artifact@v4
with:
name: BuildOutput
path: BuildOutput
test:
name: Test Module
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
- windows-2022
runs-on: ${{ matrix.os }}
needs:
- build
timeout-minutes: 120
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download BuildOutput directory
uses: actions/download-artifact@v4
with:
name: BuildOutput
path: BuildOutput
- name: Test Module - ${{ matrix.os }}
shell: "${{ matrix.os == 'windows-2022' && 'powershell' || 'pwsh' }}"

Check failure on line 58 in .github/workflows/build-test-deploy-powershell.yaml

View workflow run for this annotation

GitHub Actions / PowerShell - Build Test Deploy

Invalid workflow file

The workflow is not valid. .github/workflows/build-test-deploy-powershell.yaml (Line: 58, Col: 16): Unrecognized named-value: 'matrix'. Located at position 1 within expression: matrix.os == 'windows-2022' && 'powershell' || 'pwsh'
run: |
. ./build.ps1 -Task Test
- name: Collect Test Result - ${{ matrix.os }}
id: test_result
uses: zyborg/pester-tests-report@v1
continue-on-error: true
with:
test_results_path: BuildOutput/TestResults.xml
report_name: test_result
report_title: Test Results - ${{ matrix.os }}
skip_check_run: true
github_token: ${{ secrets.GITHUB_TOKEN }}