File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 16
16
luaVersion : " 5.4.7"
17
17
- uses : luarocks/gh-actions-luarocks@v5
18
18
- run : luarocks install busted
19
+ - run : zig build
19
20
- run : zig build test
21
+ timeout-minutes : 5
22
+ continue-on-error : true
23
+ - run : zig build run -- test
24
+ timeout-minutes : 1
25
+ continue-on-error : true
20
26
check-fmt :
21
27
runs-on : ubuntu-latest
22
28
steps :
Original file line number Diff line number Diff line change @@ -106,11 +106,8 @@ pub fn build(b: *std.Build) !void {
106
106
tests .root_module .addImport ("assets" , assets );
107
107
const tests_run = b .addRunArtifact (tests );
108
108
109
- const run_lua_tests = b .addRunArtifact (exe );
110
- run_lua_tests .addArg ("test" );
111
109
const tests_step = b .step ("test" , "test seamstress" );
112
110
tests_step .dependOn (& tests_run .step );
113
- tests_step .dependOn (& run_lua_tests .step );
114
111
115
112
const run = b .addRunArtifact (exe );
116
113
run .step .dependOn (b .getInstallStep ());
You can’t perform that action at this time.
0 commit comments