Add empty test to main
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kayomn 2022-10-01 21:25:06 +01:00
parent 584f892e4d
commit be94963cb7
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,10 @@ pub fn main() anyerror!void {
return sys.runGraphics(anyerror, run);
}
test {
// Empty test is here to run all others (for now).
}
fn run(event_loop: *sys.EventLoop, graphics: *sys.GraphicsContext) anyerror!void {
var gpa = std.heap.GeneralPurposeAllocator(.{}){};