From 54dac2c66c558e3e68652318b490fbe208c78ed5 Mon Sep 17 00:00:00 2001 From: "Joseph D. Gaeddert" Date: Fri, 3 May 2024 08:02:32 -0400 Subject: [PATCH] github/ci: again reverting report upload to github action --- .github/workflows/coverage.yml | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 02d0bb958..0f6e68de6 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -46,16 +46,12 @@ jobs: - name: make coverage run: make -j 2 coverage - # prefer codecov action (below), but produces 'unusable report'; - - name: upload report to codecov using bash script - run: bash <(curl -s https://codecov.io/bash) - - # NOTE: this fails to upload - # (suspect path fixing needed: https://docs.codecov.com/docs/fixing-paths) - #- name: upload report to codecov with github action - # uses: codecov/codecov-action@v4 - # with: - # fail_ci_if_error: true - # verbose: true - # token: ${{ secrets.CODECOV_TOKEN }} + - name: upload report to codecov + # run: bash <(curl -s https://codecov.io/bash) + # https://docs.codecov.com/docs/fixing-paths + uses: codecov/codecov-action@v4 + with: + fail_ci_if_error: true + verbose: true + token: ${{ secrets.CODECOV_TOKEN }}