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 21, 2024
1 parent 0bb615e commit b41c2b3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Matrix
run: |
$params = Get-Content -Path ./params.txt
echo $params
$aliases = "["
$persons = $params.split("|")
foreach ($person in $persons)
{
Expand All @@ -27,6 +27,11 @@ jobs:
if($key.ToLower() -eq "alias")
{
echo "Testing the following person: $value"
$aliases += '"'
$aliases += $value.Trim()
$aliases += '",'
}
}
}
$aliases += "]"
echo $aliases

0 comments on commit b41c2b3

Please sign in to comment.