mirror of
https://github.com/onyx-and-iris/voicemeeter.git
synced 2024-11-15 17:40:51 +00:00
10 lines
172 B
PowerShell
10 lines
172 B
PowerShell
Function RunTests {
|
|
$run_tests = "cd ../; go clean -testcache; go test ./..."
|
|
|
|
Invoke-Expression $run_tests
|
|
}
|
|
|
|
if ($MyInvocation.InvocationName -ne ".") {
|
|
RunTests
|
|
}
|