Skip to content

Commit

Permalink
Merge pull request #259 from SethTisue/fix-scaladoc-generation
Browse files Browse the repository at this point in the history
test Scaladoc generation in CI
  • Loading branch information
SethTisue authored Oct 19, 2024
2 parents 03f6cf2 + 064374c commit 3d146f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
java-version: ${{matrix.java}}
cache: sbt
- name: Test
run: sbt ++${{matrix.scala}} test package
run: sbt ++${{matrix.scala}} test doc package
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ lazy val collectionContrib = crossProject(JVMPlatform, JSPlatform, NativePlatfor
},
Compile / doc / scalacOptions ++= {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, _)) => Seq("-implicits", "-groups", "-nowarn")
case Some((2, _)) => Seq("-implicits", "-groups", "-nowarn", "-Xsource:3-cross")
case _ => Seq.empty
}
},
Expand Down

0 comments on commit 3d146f7

Please sign in to comment.