From d88e2979215b1e3773a08d007010f4bdd2ba5936 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 29 Apr 2024 01:08:20 +0530 Subject: [PATCH] Added test to github workflows --- .github/workflows/c-cpp.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 32af31a..313d7dc 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -8,10 +8,16 @@ on: jobs: build: - runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: build - run: make all + run: make all VERBOSE=2 + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: test + run: make tests VERBOSE = 2 && make test VERBOSE=2