From b259d6711fc9c85283476e00597d46861b50f5b4 Mon Sep 17 00:00:00 2001 From: Kevin Matthes <92332892+kevinmatthes@users.noreply.github.com> Date: Mon, 15 Apr 2024 22:57:47 +0200 Subject: [PATCH] [Bugfix] CI: Correct code coverage report asset upload on PR (#1375) * Fixed ::= CI: code coverage report asset upload; fixes #1317 * Create summary of recent changes --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .github/workflows/pr.yml | 2 +- changelog.d/20240415_203131_GitHub_Actions_1317.ron | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 changelog.d/20240415_203131_GitHub_Actions_1317.ron diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index e1bd1cd4..123290b8 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -63,7 +63,7 @@ jobs: - run: | rustup update cargo llvm-cov --cobertura --output-path cobertura.xml - pycobertura show cobertura.xml >> coverage.md + pycobertura show cobertura.xml >> code-coverage.txt - uses: actions/upload-artifact@v4.3.1 with: diff --git a/changelog.d/20240415_203131_GitHub_Actions_1317.ron b/changelog.d/20240415_203131_GitHub_Actions_1317.ron new file mode 100644 index 00000000..7bbe2a35 --- /dev/null +++ b/changelog.d/20240415_203131_GitHub_Actions_1317.ron @@ -0,0 +1,8 @@ +( + references: {}, + changes: { + "Fixed": [ + "CI: code coverage report asset upload; fixes #1317", + ], + }, +)