Skip to content
This repository was archived by the owner on May 4, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.8.6
4c6d0b3c42193e09d9c775dd68cb2aec2fbbbf9f
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.8.3"
version = "3.8.6"
project.git = true
runner.dialect = scala213
docstrings.wrap = no
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ trait ItestCross extends Cross.Module[String] with MillIntegrationTestModule {

override def testInvocations: T[Seq[(PathRef, Seq[TestInvocation.Targets])]] =
T {
val env = if(millTestVersion() >= "0.12")
val env = if (millTestVersion() >= "0.12")
Map(
"COURSIER_REPOSITORIES" -> s"central sonatype:releases ivy:file://${T.dest.toString.replaceFirst("testInvocations", "test")}/ivyRepo/local/[organisation]/[module]/[revision]/[type]s/[artifact].[ext]"
)
Expand Down
5 changes: 4 additions & 1 deletion itest/src/cyclical/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ object overflow extends ScalaModule {
}

def checkManifest(ev: Evaluator) = T.command {
val projectDir = Iterator.iterate(os.pwd)(_ / os.up).find(dir => os.exists(dir / "manifests.json")).get
val projectDir = Iterator
.iterate(os.pwd)(_ / os.up)
.find(dir => os.exists(dir / "manifests.json"))
.get
val expected = ujson.read(os.read(projectDir / "manifests.json"))

val manifestMapping = Graph.generate(ev)()
Expand Down
5 changes: 4 additions & 1 deletion itest/src/minimal/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ object minimal extends ScalaModule {
}

def checkManifest(ev: Evaluator) = T.command {
val projectDir = Iterator.iterate(os.pwd)(_ / os.up).find(dir => os.exists(dir / "manifests.json")).get
val projectDir = Iterator
.iterate(os.pwd)(_ / os.up)
.find(dir => os.exists(dir / "manifests.json"))
.get
val expected = ujson.read(os.read(projectDir / "manifests.json"))

val manifestMapping = Graph.generate(ev)()
Expand Down
Loading