From b1394acc3249a9b3e4bbf5d117bc05bd1d0605fb Mon Sep 17 00:00:00 2001 From: snuffkin Date: Thu, 26 Dec 2024 19:05:49 +0900 Subject: [PATCH] fix: fix the path to the .coverage-xxx file --- .github/workflows/python-ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-ci.yaml b/.github/workflows/python-ci.yaml index 4cbf44b..c3ca2fe 100644 --- a/.github/workflows/python-ci.yaml +++ b/.github/workflows/python-ci.yaml @@ -64,7 +64,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: .coverage-${{ matrix.target }} - path: .coverage-${{ matrix.target }} + path: ./backend/.coverage-${{ matrix.target }} coverage: runs-on: ubuntu-latest