authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-26 00:08:55 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-26 00:08:55 -08:00
log823663a3c394595b18336222c65200a6da5243db
tree971a52b3c185a12fb3be3325fce6e484d08a239f
parent0798ba0b6b3e7b9847ce481e66cad24d390cd646

build.zig: add test step


1 files changed, 3 insertions(+), 0 deletions(-)

build.zig+3
......@@ -5,4 +5,7 @@ pub fn build(b: *std.build.Builder) void {
55 "extras",
66 .{ .source_file = .{ .path = "src/lib.zig" } },
77 );
8
9 const test_step = b.step("test", "dummy test step to pass CI checks");
10 _ = test_step;
811}