From 37cc623489356240d11a5bba443451c477c45a83 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Tue, 25 Jun 2024 14:59:15 +0100 Subject: [PATCH] do tests always --- build/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Program.cs b/build/Program.cs index cd06b33..be3fe4b 100644 --- a/build/Program.cs +++ b/build/Program.cs @@ -55,7 +55,7 @@ void RemoveDirectory(string d) } ); -Target(PACK, DependsOn(BUILD), () => RunAsync("dotnet", "pack Speckle.DoubleNumerics.sln -c Release -o output --no-build")); +Target(PACK, DependsOn(TEST), () => RunAsync("dotnet", "pack Speckle.DoubleNumerics.sln -c Release -o output --no-build")); Target("default", DependsOn(FORMAT, TEST), () => Console.WriteLine("Done!"));