Add caching for the Mill build tool

This commit is contained in:
clintval 2025-05-05 12:15:38 -10:00
commit 18d114c65a
No known key found for this signature in database
9 changed files with 214 additions and 7 deletions

12
__tests__/cache/mill/build.sc vendored Normal file
View file

@ -0,0 +1,12 @@
package build
import mill._, scalalib._
object MyProject extends ScalaModule {
def scalaVersion = "2.13.11"
def ivyDeps = Agg(ivy"com.lihaoyi::mainargs:0.6.2")
object test extends ScalaTests {
def ivyDeps = Agg(ivy"com.lihaoyi::utest:0.8.5")
def testFramework = "utest.runner.Framework"
}
}