Skip to content

Commit

Permalink
(maint) Add linux/macos to github actions for pwsh testing
Browse files Browse the repository at this point in the history
This commit updates the pwsh module testing to include a matrix of unix, macos
and windows platforms instead of just windows
  • Loading branch information
mcdonaldseanp committed Feb 19, 2021
1 parent 109c608 commit cd58518
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pwsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cd58518

Please sign in to comment.