Skip to content

Commit

Permalink
Update test.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
james-garriss authored Feb 26, 2024
1 parent dab1dce commit 706153c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,25 @@ jobs:
echo aliases=$aliases >> $env:GITHUB_OUTPUT
outputs:
aliases: ${{ steps.create-matrix.outputs.aliases }}
build-matrix-matrix:
runs-on: windows-latest
defaults:
run:
shell: powershell
needs:
- build-matrix
strategy:
fail-fast: false
matrix:
product: ${{ fromJson(needs.build-matrix.outputs.aliases) }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Matrix
id: create-matrix-matrix
run: |
$params = Get-Content -Path ./params.txt
$aliases = "["
$persons = $params.split("|")
foreach ($person in $persons)

0 comments on commit 706153c

Please sign in to comment.