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