diff options
| author | 2023-03-20 09:25:45 +0100 | |
|---|---|---|
| committer | 2023-03-20 09:25:45 +0100 | |
| commit | d38b13e7bcd5df0edad6e4331a62eb68778a152d (patch) | |
| tree | f8c2ecbd702d1a6b2c9bacb0b6c576c2ab6f167e | |
| parent | Update to newest version of zig (diff) | |
| download | zig-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.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -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 (.{ |