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