summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jimmi Holst Christensen2023-03-20 09:25:45 +0100
committerGravatar Jimmi Holst Christensen2023-03-20 09:25:45 +0100
commitd38b13e7bcd5df0edad6e4331a62eb68778a152d (patch)
treef8c2ecbd702d1a6b2c9bacb0b6c576c2ab6f167e
parentUpdate to newest version of zig (diff)
downloadzig-clap-d38b13e7bcd5df0edad6e4331a62eb68778a152d.tar.gz
zig-clap-d38b13e7bcd5df0edad6e4331a62eb68778a152d.tar.xz
zig-clap-d38b13e7bcd5df0edad6e4331a62eb68778a152d.zip
Update build script to actually run the tests
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index b44a5fa..59ae76d 100644
--- a/build.zig
+++ b/build.zig
@@ -12,7 +12,7 @@ pub fn build(b: *std.Build) void {
12 .target = target, 12 .target = target,
13 .optimize = optimize, 13 .optimize = optimize,
14 }); 14 });
15 test_step.dependOn(&tests.step); 15 test_step.dependOn(&tests.run().step);
16 16
17 const example_step = b.step("examples", "Build examples"); 17 const example_step = b.step("examples", "Build examples");
18 inline for (.{ 18 inline for (.{