From f7fca1e04b3424169a293a275034d4e0c33b10da 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 | 31 ------------------------------- build.sbt | 2 +- 2 files changed, 1 insertion(+), 32 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d21000..58fcb93 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -235,34 +235,3 @@ jobs: with: modules-ignore: rootjs_2.12 rootjs_2.13 rootjvm_2.12 rootjvm_2.13 rootnative_2.12 rootnative_2.13 example1_2.12 example1_2.13 configs-ignore: test scala-tool scala-doc-tool test-internal - - coverage: - name: Generate coverage report - strategy: - matrix: - os: [ubuntu-latest] - scala: [2.12, 2.13] - java: [temurin@11] - runs-on: ${{ matrix.os }} - steps: - - name: Checkout current branch (fast) - uses: actions/checkout@v4 - - - name: Setup Java (temurin@17) - id: setup-java-temurin-17 - if: matrix.java == 'temurin@17' - uses: actions/setup-java@v4 - with: - distribution: temurin - java-version: 17 - cache: sbt - - - name: sbt update - 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 - - - uses: codecov/codecov-action@v3 - with: - flags: ${{matrix.scala}} 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"