From 471efd4dd29edd9bc349fbcec6127900ee064cfe Mon Sep 17 00:00:00 2001 From: Darren Gibson Date: Tue, 2 Apr 2024 09:45:56 -0500 Subject: [PATCH] Disable code coverage --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d21000..e20a699 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -261,7 +261,7 @@ jobs: if: matrix.java == 'temurin@17' && steps.setup-java-temurin-17.outputs.cache-hit == 'false' run: sbt +update - - run: sbt '++ ${{ matrix.scala }}' coverage golden/test coverageAggregate + - run: sbt '++ ${{ matrix.scala }}' coverage goldenJVM/test coverageAggregate - uses: codecov/codecov-action@v3 with: diff --git a/build.sbt b/build.sbt index db811e3..dcd03f2 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ ThisBuild / tlBaseVersion := "0.4" ThisBuild / description := "Yet another Typesafe Config decoder" -ThisBuild / circeRootOfCodeCoverage := Some("golden") +ThisBuild / circeRootOfCodeCoverage := None ThisBuild / startYear := Some(2016) val scala212 = "2.12.19"