diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 11627a57a..081b7bb2e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -171,8 +171,13 @@ jobs: $QMAKE QMAKE_CXX="$CXX" QMAKE_CC="$CC" QMAKE_LINK="$CXX" QMAKE_LINK_SHLIB="$CXX" CONFIG+=coverage - name: Build + if: ${{ ! startsWith( matrix.task, 'coverage') }} run: cd build && make -j $NPROC + - name: Build Coverage + if: ${{ startsWith( matrix.task, 'coverage') }} + run: make -j $NPROC + - name: Test if: ${{ ! startsWith( matrix.task, 'coverage') }} run: make check