Tooling/scripts/unit-test.ps1

9 строки
132 B
PowerShell
Executable File

#!/usr/bin/env pwsh
Push-Location $PSScriptRoot/..
try {
dotnet test test/Steeltoe.Tooling.Test
} finally {
Pop-Location
}