From 5db3538b4e02c7adc37d417037a4718beb1ca29e Mon Sep 17 00:00:00 2001 From: Fournet Enzo Date: Sun, 8 Dec 2024 11:45:15 +0100 Subject: [PATCH] Update python-CI.yml --- .github/workflows/python-CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }}