From 2ff90e05d6ee032e9ff0e86282a37226eda83877 Mon Sep 17 00:00:00 2001 From: "Sean P. McDonald" Date: Fri, 19 Feb 2021 10:14:16 -0600 Subject: [PATCH] (maint) Add linux/macos to github actions for pwsh testing This commit updates the pwsh module testing to include a matrix of unix, macos and windows platforms instead of just windows --- .github/workflows/pwsh.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pwsh.yaml b/.github/workflows/pwsh.yaml index 89678f5e5d..87d161ed4b 100644 --- a/.github/workflows/pwsh.yaml +++ b/.github/workflows/pwsh.yaml @@ -12,7 +12,11 @@ jobs: test: name: Test Generated PowerShell Cmdlets - runs-on: windows-latest + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + runs-on: ${{ matrix.os }} steps: - name: Checkout repository uses: actions/checkout@v2