This repository was archived by the owner on May 9, 2023. It is now read-only.
File tree 3 files changed +20
-1
lines changed
3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 54
54
check-latest : true
55
55
- name : Run tests
56
56
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
+
69
+ with :
70
+ distribution : temurin
71
+ java-version : 17
72
+ check-latest : true
73
+ - name : Validate documentation
74
+ run : sbt doc
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ lazy val root = project
88
88
zioKafka,
89
89
zioKafkaTestUtils,
90
90
zioKafkaTest,
91
- zioKafkaBench,
91
+ zioKafkaBench
92
92
)
93
93
94
94
def buildInfoSettings (packageName : String ) =
Original file line number Diff line number Diff line change 1
1
addSbtPlugin(" org.scalameta" % " sbt-scalafmt" % " 2.5.0" )
2
2
addSbtPlugin(" io.github.davidgregory084" % " sbt-tpolecat" % " 0.4.2" )
3
3
addSbtPlugin(" com.eed3si9n" % " sbt-buildinfo" % " 0.11.0" )
4
+ addSbtPlugin(" dev.zio" % " zio-sbt-website" % " 0.3.10" )
4
5
addSbtPlugin(" pl.project13.scala" % " sbt-jmh" % " 0.4.4" )
You can’t perform that action at this time.
0 commit comments