diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4fa06758d7..de6df1c893 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -150,17 +150,17 @@ jobs: run: | set -e mv tests/retworkx*profraw . - ./grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o ./coveralls.info + ./grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o ./coveralls.lcov - uses: actions/upload-artifact@v4 with: name: coverage - path: coveralls.info + path: coveralls.lcov - name: Coveralls uses: coverallsapp/github-action@v2 with: github-token: ${{ secrets.GITHUB_TOKEN }} format: lcov - file: ./coveralls.info + file: ./coveralls.lcov docs: if: github.repository_owner == 'Qiskit' needs: [tests]