Skip to content

Commit

Permalink
do not fail CI if coverage upload fails -reverting to current standar…
Browse files Browse the repository at this point in the history
…d for runtime
  • Loading branch information
sierra-moxon committed Jul 12, 2024
1 parent ff48929 commit 2a02fe2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: poetry install --no-interaction --all-extras

#----------------------------------------------
# coverage report
# coverage report
#----------------------------------------------
- name: Generate coverage results
run: |
Expand All @@ -62,9 +62,10 @@ jobs:
# upload coverage results
#----------------------------------------------
- name: Upload coverage report
if: github.repository == 'linkml/linkml-runtime'
uses: codecov/codecov-action@v4
with:
name: codecov-results-${{ matrix.os }}-${{ matrix.python-version }}
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.xml
fail_ci_if_error: false
fail_ci_if_error: false

0 comments on commit 2a02fe2

Please sign in to comment.