From 7adb5c662f71f9119f9f556ba5a811bc818a0f95 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Sun, 6 Jun 2021 23:30:18 -0500 Subject: [PATCH] add examples to github actions --- pixie.nimble | 2 +- tests/all.nim | 27 +++++++++++++++++++++++++-- 2 files changed, 26 insertions(+), 3 deletions(-) diff --git a/pixie.nimble b/pixie.nimble index 512aea1..1002a9a 100644 --- a/pixie.nimble +++ b/pixie.nimble @@ -6,7 +6,7 @@ license = "MIT" srcDir = "src" requires "nim >= 1.2.6" -requires "vmath >= 1.0.4" +requires "vmath >= 1.0.8" requires "chroma >= 0.2.5" requires "zippy >= 0.3.5" requires "flatty >= 0.1.3" diff --git a/tests/all.nim b/tests/all.nim index 1a4e9f1..3b810b4 100644 --- a/tests/all.nim +++ b/tests/all.nim @@ -1,2 +1,25 @@ -import test_bmp, test_context, test_fonts, test_gif, test_images, - test_images_draw, test_jpg, test_masks, test_paints, test_paths, test_png, test_svg +import + test_bmp, + test_context, + test_fonts, + test_gif, + test_images, + test_images_draw, + test_jpg, + test_masks, + test_paints, + test_paths, + test_png, + test_svg, + ../examples/text, + ../examples/text_spans, + ../examples/square, + ../examples/line, + ../examples/rounded_rectangle, + ../examples/heart, + ../examples/masking, + ../examples/gradient, + ../examples/image_tiled, + ../examples/shadow, + ../examples/blur, + ../examples/tiger