From 83c8597eb9292fc95035d2ecc741235dce4ca2d5 Mon Sep 17 00:00:00 2001 From: Diego Herrera Date: Fri, 1 Oct 2021 16:17:31 -0600 Subject: [PATCH] Update makefile.yml --- .github/workflows/makefile.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 8f3ceed..3e72cbf 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -12,11 +12,13 @@ jobs: runs-on: ubuntu-latest steps: - + - name: Checkout Repo - uses: actions/checkout@v2 - name: Build - run: make all + run: | + cd code + make all - name: Build tests run: make tests - name: Execute tests