mirror of
https://github.com/actions/runner-images.git
synced 2025-12-28 04:29:23 +08:00
8 lines
218 B
PowerShell
8 lines
218 B
PowerShell
Describe "PipxPackages" {
|
|
$pipxToolset = (Get-ToolsetContent).pipx
|
|
foreach($tool in $pipxToolset) {
|
|
It "${tool.package}" {
|
|
"${tool.cmd}" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
} |