From 823663a3c394595b18336222c65200a6da5243db Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Sun, 26 Nov 2023 00:08:55 -0800 Subject: [PATCH] build.zig: add test step --- build.zig | 3 +++ 1 file changed, 3 insertions(+) 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; } -- 2.54.0