From 4226667b9c83f787ba4038610c21003fa359cc5e Mon Sep 17 00:00:00 2001 From: Oleksii Shtanko Date: Sat, 22 Jul 2023 23:25:36 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6577971..2831c1e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: run: ./gradlew jacocoTestReport - name: Check build dirs - run: ls -la && ls -la build && ls -la build/reports + run: ls -la && ls -la build && ls -la build/reports && ls -la build/jacoco - name: Upload jacoco report uses: actions/upload-artifact@v3 @@ -67,7 +67,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: jacoco-test-exec-file - path: ./build/jacoco/text.exec + path: build/jacoco/test.exec - name: Upload coverage to Codecov uses: codecov/codecov-action@v3.1.4 @@ -81,7 +81,7 @@ jobs: - name: Copy jacoco coverage files run: cp -a ./build/reports/jacoco/ .qodana/coverage-data && ls -la - name: Copy jacoco test files - run: cp -a ./build/jacoco/text.exec .qodana/coverage-data && ls -la + run: cp -a ./build/jacoco/test.exec .qodana/coverage-data && ls -la - name: Copy test coverage files run: cp -a ./build/reports/tests/ .qodana/coverage-data && ls -la - name: 'Qodana Scan'