diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index bb19e0a..ff09c88 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -11,6 +11,7 @@ jobs: name: ${{ matrix.os }}-${{ github.workflow }} runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] include: @@ -26,6 +27,6 @@ jobs: - name: configure run: mkdir build; cd build; cmake .. - name: make - run: cd build; cmake --build . -j + run: cd build; cmake --build . -j -v - name: make test - run: cd build; cmake --build . -- test + run: cd build; cmake --build . -v -- test