Skip to content

Commit

Permalink
build: Add Scala 3 to CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbr committed Jul 28, 2022
1 parent 5036ee7 commit a15bd27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: ${{ format('./sbt ++{0} clean coverage test coverageReport', matrix.scala) }}
if: matrix.scala != '3.0.2'
- name: test
run: ${{ format('./sbt ++{0} -v clean test', matrix.scala) }}
run: ${{ format('./sbt "++{0} -v clean; ++{0} test"', matrix.scala) }}
if: matrix.scala == '3.0.2'

# coverage doesn't really work with Scala 3 yet so we only run it on Scala 2, which should be sufficient anyway
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ resolvers += Classpaths.sbtPluginReleases
resolvers += Resolver.sonatypeRepo("snapshots")

addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.1")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.1")

0 comments on commit a15bd27

Please sign in to comment.