From 29da72b1d9b32c23b9485d0adafbe5807387d0d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0ar=C5=ABnas=20Nejus?= Date: Sun, 16 Jun 2024 18:24:48 +0100 Subject: [PATCH] Show source files on codecov While the commit merged yesterday fixed the coverage upload to coveralls, it broke the source files preview on the platform. This was due to the missing actions/checkout step in the coverage upload job. --- .github/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9c3d58305..8d0befeee 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -64,6 +64,8 @@ jobs: permissions: id-token: write steps: + - uses: actions/checkout@v4 + - name: Get the coverage report uses: actions/download-artifact@v4 with: