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

Commit

Permalink
Fix rebase on v2.1.1 (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
guizmaii committed Mar 1, 2023
1 parent 41222cc commit 8c6de69
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,21 @@ jobs:
check-latest: true
- name: Run tests
run: sbt ++${{ matrix.scala }} test

validate_doc:
runs-on: ubuntu-latest
steps:
- name: Checkout current branch
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cache scala dependencies
uses: coursier/cache-action@v6
- name: Setup Java
uses: actions/[email protected]
with:
distribution: temurin
java-version: 17
check-latest: true
- name: Validate documentation
run: sbt doc
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ lazy val root = project
zioKafka,
zioKafkaTestUtils,
zioKafkaTest,
zioKafkaBench,
zioKafkaBench
)

def buildInfoSettings(packageName: String) =
Expand Down
1 change: 1 addition & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.2")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.3.10")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.4")

0 comments on commit 8c6de69

Please sign in to comment.