From 209efe85a1d319d76e47df596698b0266b1bade4 Mon Sep 17 00:00:00 2001 From: Joey Yakimowich-Payne Date: Tue, 12 Jul 2022 13:07:43 -0600 Subject: [PATCH] Fix CI errors --- .github/workflows/build.yml | 2 +- nimtemplate.nimble | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 76f7f63..ea5658f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,4 +52,4 @@ jobs: - name: Run tests run: nimble test -y - name: Run tests orc - run: nimble test --gc:orc -y + run: nimble test --mm:orc -y diff --git a/nimtemplate.nimble b/nimtemplate.nimble index bd72628..eb3b8d9 100644 --- a/nimtemplate.nimble +++ b/nimtemplate.nimble @@ -4,5 +4,6 @@ description = "Description of your library" license = "MIT" srcDir = "src" +bin = @["myproject"] requires "nim >= 1.2.2"