aboutsummaryrefslogtreecommitdiff
path: root/build.sc
blob: 86bd4423492426fce80a249a634c2ddefec79f5b (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.1"

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

}