diff --git a/.github/workflows/checkCI.yml b/.github/workflows/checkCI.yml index 0d2b462..3bda398 100644 --- a/.github/workflows/checkCI.yml +++ b/.github/workflows/checkCI.yml @@ -130,6 +130,13 @@ jobs: cmake --build build -- -j8 fi - name: Run tests + if: matrix.compiler == 'mingw' + shell: pwsh + run: | + $env:PATH="$env:PATH;C:\msys64\mingw64\bin;C:\msys64\usr\bin;" + ctest --no-tests=error --test-dir build --build-config ${{ matrix.configuration }} --parallel 8 + - name: Run tests + if: matrix.compiler != 'mingw' run: ctest --no-tests=error --test-dir build --build-config ${{ matrix.configuration }} --parallel 8 html_documentation_checks: