From 7715778e49444812c913de98251aa084713511f3 Mon Sep 17 00:00:00 2001 From: William Dutton Date: Wed, 11 Dec 2024 06:24:56 +1000 Subject: [PATCH] fix: only one flag per upload --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fc93184c..45c11187 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -104,12 +104,12 @@ jobs: with: file: ./coverage.xml token: ${{ secrets.CODECOV_TOKEN }} - flags: "unittests,${{ matrix.ckan-version }}" + flags: "${{ matrix.ckan-version }}" - name: Upload test results to Codecov if: ${{ !cancelled() }} uses: codecov/test-results-action@v1 with: - flags: "unittests,${{ matrix.ckan-version }}" + flags: "${{ matrix.ckan-version }}" files: "/tmp/artifacts/junit/results.xml" token: ${{ secrets.CODECOV_TOKEN }}