Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit 605d427

Browse files
committed
Fix rebase on v2.1.1 (#164)
1 parent 783a44a commit 605d427

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.github/workflows/ci.yml

+18
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,21 @@ jobs:
5454
check-latest: true
5555
- name: Run tests
5656
run: sbt ++${{ matrix.scala }} test
57+
58+
validate_doc:
59+
runs-on: ubuntu-latest
60+
steps:
61+
- name: Checkout current branch
62+
uses: actions/checkout@v3
63+
with:
64+
fetch-depth: 0
65+
- name: Cache scala dependencies
66+
uses: coursier/cache-action@v6
67+
- name: Setup Java
68+
uses: actions/[email protected]
69+
with:
70+
distribution: temurin
71+
java-version: 17
72+
check-latest: true
73+
- name: Validate documentation
74+
run: sbt doc

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ lazy val root = project
8888
zioKafka,
8989
zioKafkaTestUtils,
9090
zioKafkaTest,
91-
zioKafkaBench,
91+
zioKafkaBench
9292
)
9393

9494
def buildInfoSettings(packageName: String) =

project/plugins.sbt

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
22
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.2")
33
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
4+
addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.3.10")
45
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.4")

0 commit comments

Comments
 (0)