diff --git a/.github/workflows/python-CI.yml b/.github/workflows/python-CI.yml index b4c6111..9990b61 100644 --- a/.github/workflows/python-CI.yml +++ b/.github/workflows/python-CI.yml @@ -49,7 +49,7 @@ jobs: run: exit 1 - name: Upload to Codecov - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev' uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} @@ -59,7 +59,7 @@ jobs: verbose: true - name: Upload test results to Codecov - if: github.ref == 'refs/heads/main' && !cancelled() + if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev') && !cancelled() uses: codecov/test-results-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }}