Skip to content

Commit 337b954

Browse files
committed
fix Scaladoc generation (and check it in CI)
1 parent 1bf4369 commit 337b954

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
java-version: ${{matrix.java}}
2424
- uses: sbt/setup-sbt@v1
2525
- name: Test
26-
run: sbt ++${{matrix.scala}} test headerCheck versionPolicyCheck package
26+
run: sbt ++${{matrix.scala}} test doc headerCheck versionPolicyCheck package

Diff for: build.sbt

-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor
3434
// go nearly warning-free, but only on 2.13, it's too hard across all versions
3535
Compile / scalacOptions ++= (CrossVersion.partialVersion(scalaVersion.value) match {
3636
case Some((2, 13)) => Seq("-Werror", "-Wunused",
37-
// ideally we'd do something about this. `^?` is the responsible method
38-
"-Wconf:site=scala.util.parsing.combinator.Parsers.*&cat=lint-multiarg-infix:i",
3937
// not sure what resolving this would look like? didn't think about it too hard
4038
"-Wconf:site=scala.util.parsing.combinator.lexical.StdLexical.*&cat=other-match-analysis:i",
4139
)

0 commit comments

Comments
 (0)