Skip to content

Commit

Permalink
skip pointless test step
Browse files Browse the repository at this point in the history
  • Loading branch information
kubkon committed Mar 14, 2024
1 parent 78e334e commit 3edfd28
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@ jobs:
with:
version: master
- run: zig fmt --check src
- run: zig build test
- run: zig build install
- run: zig build install
9 changes: 0 additions & 9 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,4 @@ pub fn build(b: *std.Build) void {

const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);

const tests = b.addTest(.{
.root_source_file = .{ .path = "src/Zcoff.zig" },
.target = target,
.optimize = mode,
});
const tests_run = b.addRunArtifact(tests);
const test_step = b.step("test", "Run all tests");
test_step.dependOn(&tests_run.step);
}

0 comments on commit 3edfd28

Please sign in to comment.