aboutsummaryrefslogtreecommitdiff
path: root/build.sc
blob: e27039f39d5aec28bf9ae75ffbf30cd73a298906 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import mill._, scalalib._, scalafmt._

object commando extends ScalaModule with ScalafmtModule {
  override def scalaVersion = "2.13.0"

  object test extends Tests {
    def ivyDeps = Agg(
      ivy"com.lihaoyi::utest:0.7.1"
    )
    def testFrameworks = Seq("utest.runner.Framework")
  }

}