From 65a28d2a6b46ab4eb8a30e6f56de0e6e24b19398 Mon Sep 17 00:00:00 2001 From: Kevin Montag Date: Sat, 17 Aug 2024 05:08:06 +0200 Subject: [PATCH] ci: temporarily disable codecov action workaround for https://github.com/codecov/codecov-action/issues/1547 --- .github/workflows/test_and_release.yml | 46 +++++++++++++------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/test_and_release.yml b/.github/workflows/test_and_release.yml index ef7835d..99b8e78 100644 --- a/.github/workflows/test_and_release.yml +++ b/.github/workflows/test_and_release.yml @@ -37,30 +37,30 @@ jobs: name: coverage-${{ matrix.os }}-${{ matrix.python-version }} path: .coverage* - coverage: - name: Report coverage - runs-on: ubuntu-latest - # Make sure coverage reports have been generated. - needs: - - validate - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 - with: - python-version: 3.12 - - run: python -m pip install hatch + # coverage: + # name: Report coverage + # runs-on: ubuntu-latest + # # Make sure coverage reports have been generated. + # needs: + # - validate + # steps: + # - uses: actions/checkout@v4 + # - uses: actions/setup-python@v4 + # with: + # python-version: 3.12 + # - run: python -m pip install hatch - - uses: actions/download-artifact@v4 - with: - pattern: coverage-* - merge-multiple: true + # - uses: actions/download-artifact@v4 + # with: + # pattern: coverage-* + # merge-multiple: true - - run: hatch run coverage:combine - - run: hatch run coverage:report-xml - - uses: codecov/codecov-action@v4 - with: - fail_ci_if_error: true - token: ${{ secrets.CODECOV_TOKEN }} + # - run: hatch run coverage:combine + # - run: hatch run coverage:report-xml + # - uses: codecov/codecov-action@v4 + # with: + # fail_ci_if_error: true + # token: ${{ secrets.CODECOV_TOKEN }} release: name: Publish to GitHub and PyPi @@ -76,7 +76,7 @@ jobs: needs: # Don't publish unless everything else succeeded. - validate - - coverage + # - coverage permissions: id-token: write