mirror of
https://github.com/onyx-and-iris/voicemeeter.git
synced 2026-01-02 15:37:48 +00:00
10 lines
168 B
PowerShell
10 lines
168 B
PowerShell
Function RunTests {
|
|
$run_tests = "go clean -testcache; go test ../..."
|
|
|
|
Invoke-Expression $run_tests
|
|
}
|
|
|
|
if ($MyInvocation.InvocationName -ne ".") {
|
|
RunTests
|
|
}
|