From 642417b9840b0732b75a67866bb52ec9e7e79eee Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Wed, 10 Dec 2025 17:11:43 +0100 Subject: [PATCH] ci: Add artifact upload step for JUnit test results Added step to upload JUnit test results as an artifact. --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0ba9ac1..4c77814 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,6 +30,12 @@ jobs: - name: Run tests with coverage run: make test-coverage-and-junit + - name: 'Upload Artifact' + uses: actions/upload-artifact@v4 + with: + name: junit.xml + path: junit.xml + - name: Upload test results to Codecov uses: codecov/test-results-action@v1 with: