Skip to content

Commit 6e2dc14

Browse files
committed
fix issue in CI build
1 parent 8e5eaac commit 6e2dc14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: sbt '++${{ matrix.scala }}' coverage test coverageReport
6060

6161
- name: Scala build
62-
if: '!startsWith(matrix.scala, ''2.13''))'
62+
if: '!startsWith(matrix.scala, ''2.13'')'
6363
run: sbt '++${{ matrix.scala }}' test
6464

6565
- name: Publish to Codecov.io

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ pomExtra := {
111111

112112
ThisBuild / githubWorkflowBuild := Seq(
113113
WorkflowStep.Sbt(List("coverage", "test", "coverageReport"), name = Some("Scala 2.13 build"), cond = Some("startsWith(matrix.scala, '2.13')")),
114-
WorkflowStep.Sbt(List("test"), name = Some("Scala build"), cond = Some("!startsWith(matrix.scala, '2.13'))"))
114+
WorkflowStep.Sbt(List("test"), name = Some("Scala build"), cond = Some("!startsWith(matrix.scala, '2.13')"))
115115
)
116116

117117
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec(Zulu, "8"))

0 commit comments

Comments
 (0)