diff --git a/.github/workflows/harbor-ci.yaml b/.github/workflows/harbor-ci.yaml index d11569f..da41bea 100644 --- a/.github/workflows/harbor-ci.yaml +++ b/.github/workflows/harbor-ci.yaml @@ -75,13 +75,8 @@ jobs: pytest -n auto --durations=10 -v --cov-report=xml --cov-report=term --color=yes \ --cov=harbor \ harbor/tests - - name: Upload Code Coverage to Codecov + - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4.0.1 - # Don't upload coverage scheduled or on fork - if: ${{ github.repository == 'choderalab/harbor' - && github.event != 'schedule' }} with: - file: ./coverage.xml - flags: unittests - name: codecov-${{ matrix.os }}-py${{ matrix.python-version }} - fail_ci_if_error: false \ No newline at end of file + token: ${{ secrets.CODECOV_TOKEN }} + slug: choderalab/harbor