diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fce9728..e14eded 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,6 +66,10 @@ jobs: if: matrix.java == 'temurin@17' && matrix.os == 'ubuntu-latest' run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' mimaReportBinaryIssues + - name: Generate API documentation + if: matrix.java == 'temurin@17' && matrix.os == 'ubuntu-latest' + run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' doc + - name: Make target directories if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main') run: mkdir -p core/.jvm/target project/target diff --git a/build.sbt b/build.sbt index b444741..58d3774 100644 --- a/build.sbt +++ b/build.sbt @@ -10,9 +10,6 @@ ThisBuild / developers ++= List( ThisBuild / scalaVersion := "3.3.0" ThisBuild / tlFatalWarnings := true ThisBuild / tlJdkRelease := Some(17) -ThisBuild / tlCiDocCheck := false // Something is broken with docs - -ThisBuild / Compile / doc / autoAPIMappings := true val Http4sVersion = "1.0.0-M40" val catsEffectVersion = "3.5.1"