From aeccdf7f30032890f517d9ba28641828259bc46e Mon Sep 17 00:00:00 2001 From: John Date: Mon, 29 May 2023 16:27:59 +0400 Subject: [PATCH] Bugfix/coverage file not found (#112) * fix: coverage file not found --------- Co-authored-by: i.akhaltsev --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb89bf0..55fd154 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,10 +33,11 @@ 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.gatling.amqp.examples.AmqpGatlingTest" test coverageOff + + - name: Coverage Report + run: sbt coverageReport - - name: Tests - run: sbt clean coverage "Gatling / testOnly ru.tinkoff.gatling.amqp.examples.AmqpGatlingTest" coverageReport coverageOff - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3