From 0f949667660cd123b3b03abd2aa61fbe611f2219 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 29 May 2023 15:31:28 +0400 Subject: [PATCH] fix: coverage file not found (#111) Co-authored-by: i.akhaltsev --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9690fa3..fb89bf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,8 +32,11 @@ jobs: with: java-version: openjdk@1.17 + - name: Test Release + run: sbt clean scalafmtCheckAll scalafmtSbtCheck compile test + - name: Tests - run: sbt clean coverage "Gatling / testOnly ru.tinkoff.gatling.amqp.examples.AmqpGatlingTest" coverageReport + 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