Skip to content

Commit 1168d48

Browse files
committed
remove coverage
1 parent c557e29 commit 1168d48

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,7 @@ jobs:
4646
- name: Check that workflows are up to date
4747
run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck
4848

49-
- name: Scala 2.13 build
50-
if: startsWith(matrix.scala, '2.13')
51-
run: sbt '++ ${{ matrix.scala }}' coverage test coverageReport
52-
53-
- name: Scala build
54-
if: '!startsWith(matrix.scala, ''2.13'')'
49+
- name: Build project
5550
run: sbt '++ ${{ matrix.scala }}' test
5651

5752
- name: Compress target directories

build.sbt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,6 @@ pomExtra := {
131131

132132
MetaInfLicenseCopy.settings
133133

134-
ThisBuild / githubWorkflowBuild := Seq(
135-
WorkflowStep
136-
.Sbt(List("coverage", "test", "coverageReport"), name = Some("Scala 2.13 build"), cond = Some("startsWith(matrix.scala, '2.13')")),
137-
WorkflowStep.Sbt(List("test"), name = Some("Scala build"), cond = Some("!startsWith(matrix.scala, '2.13')"))
138-
)
139-
140134
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec(Zulu, "8"))
141135
ThisBuild / githubWorkflowTargetTags ++= Seq("v*")
142136
ThisBuild / githubWorkflowPublishTargetBranches := Seq(

0 commit comments

Comments
 (0)