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