diff --git a/build.zig b/build.zig index 5ff99b4f77acea3517b9460a4e7557f7724fdda3..b209e8fb140deec0cfdabe790972e2772b731799 100644 --- a/build.zig +++ b/build.zig @@ -13,6 +13,7 @@ pub fn build(b: *std.Build) void { deps.addAllTo(tests); const tests_run = b.addRunArtifact(tests); + tests_run.has_side_effects = true; const test_step = b.step("test", "dummy test step to pass CI checks"); test_step.dependOn(&tests_run.step);