We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c2aa45 commit 822f1eaCopy full SHA for 822f1ea
.github/workflows/ci.yml
@@ -68,7 +68,7 @@ jobs:
68
run: sbt ++${{ matrix.scala }} test
69
70
- name: Build and test sbt plugin
71
- if: ${{ matrix.scala == "2.12.13" }}
+ if: ${{ matrix.scala == 2.12.13 }}
72
run: sbt ++${{ matrix.scala }} scripted
73
74
- name: Compress target directories
build.sbt
@@ -69,7 +69,7 @@ inThisBuild(
WorkflowStep.Sbt(
List("scripted"),
name = Some("Build and test sbt plugin"),
- cond = Some(s"""$${{ matrix.scala == "$scala212" }}""")
+ cond = Some(s"""$${{ matrix.scala == $scala212 }}""")
)
),
75
githubWorkflowPublish := List(
0 commit comments