diff --git a/build.zig b/build.zig index ae146fab527ef55de55d9d4bf9b48f0cd813692b..4e560b072dfb620a00c6b7f7d67f634e1ab4f551 100644 --- a/build.zig +++ b/build.zig @@ -13,6 +13,7 @@ pub fn build(b: *std.Build) void { }), }); deps.addAllTo(tests); + b.getInstallStep().dependOn(&tests.step); const test_step = b.step("test", "Run all library tests"); const tests_run = b.addRunArtifact(tests);