Skip to content

Commit

Permalink
Merge pull request #405 from fthomas/topic/enable-coverage
Browse files Browse the repository at this point in the history
Enable coverage again
  • Loading branch information
fthomas authored Feb 9, 2023
2 parents 16f14bc + e72fe98 commit adf5904
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: sbt '++ ${{ matrix.scala }}' validate

- name: Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3

- name: Make target directories
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v'))
Expand Down
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec(Temurin, "8"))
ThisBuild / githubWorkflowBuild :=
Seq(
WorkflowStep.Sbt(List("validate"), name = Some("Build project")),
WorkflowStep.Use(UseRef.Public("codecov", "codecov-action", "v1"), name = Some("Codecov"))
WorkflowStep.Use(UseRef.Public("codecov", "codecov-action", "v3"), name = Some("Codecov"))
)
ThisBuild / mergifyPrRules := {
val authorCondition = MergifyCondition.Custom("author=scala-steward")
Expand Down Expand Up @@ -172,8 +172,7 @@ lazy val commonSettings = Def.settings(
)

lazy val compileSettings = Def.settings(
scalaVersion := Scala_2_13,
coverageEnabled := false
scalaVersion := Scala_2_13
)

lazy val metadataSettings = Def.settings(
Expand Down

0 comments on commit adf5904

Please sign in to comment.