diff --git a/build.zig b/build.zig index 5bfde27189c4c925b494dad5bdfd2dce7a61f2e7..57ccd1dabebd9c98401ace88b26d3ec9365917c3 100644 --- a/build.zig +++ b/build.zig @@ -5,4 +5,7 @@ pub fn build(b: *std.build.Builder) void { "extras", .{ .source_file = .{ .path = "src/lib.zig" } }, ); + + const test_step = b.step("test", "dummy test step to pass CI checks"); + _ = test_step; }