Skip to content

Commit

Permalink
Bump sbt-typelevel
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed Jan 17, 2022
1 parent 3249508 commit b1f2429
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,17 +77,17 @@ jobs:
run: sbt '++${{ matrix.scala }}' headerCheckAll scalafmtCheckAll 'project /' scalafmtSbtCheck

- name: Test
run: sbt '++${{ matrix.scala }}' clean test
run: sbt '++${{ matrix.scala }}' test

- name: Check binary compatibility
run: sbt '++${{ matrix.scala }}' mimaReportBinaryIssues

- name: Generate API documentation
run: sbt '++${{ matrix.scala }}' doc

- name: Check unused compile dependencies
run: sbt '++${{ matrix.scala }}' unusedCompileDependenciesTest

- name: Build docs
run: sbt '++${{ matrix.scala }}' doc

- name: Make target directories
run: mkdir -p target core/target project/target

Expand Down
3 changes: 1 addition & 2 deletions core/build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
resolvers += Resolver.sonatypeRepo("snapshots")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4-a89ff89-SNAPSHOT")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.0-M4")
addSbtPlugin("com.github.cb372" % "sbt-explicit-dependencies" % "0.2.16")
3 changes: 1 addition & 2 deletions core/src/main/scala/org/http4s/sbt/Http4sOrgPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ object Http4sOrgPlugin extends AutoPlugin {
githubWorkflowBuildPostamble ++= Seq(
WorkflowStep.Sbt(
List("unusedCompileDependenciesTest"),
name = Some("Check unused compile dependencies")),
WorkflowStep.Sbt(List("doc"), name = Some("Build docs"))
name = Some("Check unused compile dependencies"))
),
githubWorkflowBuildMatrixFailFast := Some(false),
githubWorkflowTargetBranches := Seq("**")
Expand Down

0 comments on commit b1f2429

Please sign in to comment.