From 948b531941b37fa66678b394f62091252c62cd34 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 29 May 2023 16:29:03 +0400 Subject: [PATCH] Bugfix/fix coverage file not found (#85) * fix: coverage file not found --------- Co-authored-by: i.akhaltsev --- .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 5f0cff6..ce4ea3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,10 +24,10 @@ jobs: java-version: openjdk@1.17 - name: Test Release - run: sbt clean scalafmtCheckAll scalafmtSbtCheck compile test + run: sbt clean scalafmtCheckAll scalafmtSbtCheck compile coverage "Gatling / testOnly ru.tinkoff.load.jdbc.test.DebugTest" test coverageOff - - name: Tests - run: sbt clean coverage "Gatling / testOnly ru.tinkoff.load.jdbc.test.DebugTest" coverageReport coverageOff + - name: Coverage Report + run: sbt coverageReport - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3