diff --git a/.github/workflows/tests_gpu_cuda.yml b/.github/workflows/tests_gpu_cuda.yml index c4f21d7ca5..7a03141a2b 100644 --- a/.github/workflows/tests_gpu_cuda.yml +++ b/.github/workflows/tests_gpu_cuda.yml @@ -341,9 +341,11 @@ jobs: - name: Upload to Codecov uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: fail_ci_if_error: true - token: ${{ secrets.CODECOV_TOKEN }} + verbose: true upload-to-codecov-linux-cpp: needs: [cpptestswithLGPU] @@ -360,9 +362,11 @@ jobs: - name: Upload to Codecov uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: fail_ci_if_error: true - token: ${{ secrets.CODECOV_TOKEN }} + verbose: true - name: Cleanup if: always() diff --git a/.github/workflows/tests_linux.yml b/.github/workflows/tests_linux.yml index 5a48b30bab..1f7caef5c2 100644 --- a/.github/workflows/tests_linux.yml +++ b/.github/workflows/tests_linux.yml @@ -623,9 +623,11 @@ jobs: - name: Upload to Codecov uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: fail_ci_if_error: true - token: ${{ secrets.CODECOV_TOKEN }} + verbose: true upload-to-codecov-linux-cpp: needs: [cpptests, cpptestswithOpenBLAS, cpptestswithKokkos] @@ -642,9 +644,11 @@ jobs: - name: Upload to Codecov uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: fail_ci_if_error: true - token: ${{ secrets.CODECOV_TOKEN }} + verbose: true cpptestsWithMultipleBackends: # Device-specific tests are performed for both. Device-agnostic tests default to LightningQubit. diff --git a/.github/workflows/tests_linux_x86_mpi_gpu.yml b/.github/workflows/tests_linux_x86_mpi_gpu.yml index 4d78d4cfff..109b846f67 100644 --- a/.github/workflows/tests_linux_x86_mpi_gpu.yml +++ b/.github/workflows/tests_linux_x86_mpi_gpu.yml @@ -298,10 +298,11 @@ jobs: - name: Upload to Codecov uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: fail_ci_if_error: true verbose: true - token: ${{ secrets.CODECOV_TOKEN }} - name: Cleanup if: always() @@ -325,10 +326,11 @@ jobs: - name: Upload to Codecov uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: fail_ci_if_error: true verbose: true - token: ${{ secrets.CODECOV_TOKEN }} - name: Cleanup if: always() diff --git a/.github/workflows/tests_windows.yml b/.github/workflows/tests_windows.yml index 45584c944a..20f6f2d167 100644 --- a/.github/workflows/tests_windows.yml +++ b/.github/workflows/tests_windows.yml @@ -263,6 +263,8 @@ jobs: - name: Upload to Codecov uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: fail_ci_if_error: true - token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file + verbose: true diff --git a/.github/workflows/tests_without_binary.yml b/.github/workflows/tests_without_binary.yml index 9cf789d8b9..a007dc59a9 100644 --- a/.github/workflows/tests_without_binary.yml +++ b/.github/workflows/tests_without_binary.yml @@ -110,7 +110,9 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: ./main/coverage.xml fail_ci_if_error: true - token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file + verbose: true