From dae0a999550af9a261829b736f528c6a2a2f4b35 Mon Sep 17 00:00:00 2001 From: Diego Herrera Date: Fri, 1 Oct 2021 16:06:22 -0600 Subject: [PATCH] Update makefile.yml --- .github/workflows/makefile.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 1425260..308c5b6 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -12,16 +12,15 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout repo - uses: actions/checkout@v2 - - name: configure - run: ./configure - - - name: Install dependencies - run: make - - - name: Run check - run: make check + - name: Build + run: make all + + - name: Build tests + run: make tests + + - name: Execute tests + run: ./bin/unittest - - name: Run distcheck - run: make distcheck