diff --git a/.github/workflows/ci_testing.yml b/.github/workflows/ci_testing.yml index c639894a71385b9947fdfd3abf0c6b6716f5a71b..ffc9986f1cd169bb9aef2fafa37402dd511b40c3 100644 --- a/.github/workflows/ci_testing.yml +++ b/.github/workflows/ci_testing.yml @@ -38,16 +38,9 @@ jobs: run: | mkdir -p build cd build - cmake -DCMAKE_BUILD_TYPE=RELEASE -DCOVERAGE=ON .. + cmake -DCMAKE_BUILD_TYPE=RELEASE -DUSGSCSM_EXTERNAL_DEPS=ON .. cmake --build . - name: Test Package run: | cd build ctest -VV - - name: Upload Coverage - uses: codecov/codecov-action@v1 - with: - token: ${{ secrets.CODECOV_TOKEN }} - fail_ci_if_error: true - verbose: true - if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'