Skip to content

Commit 90d15ce

Browse files
committed
Hello, mill
1 parent 0768e9f commit 90d15ce

File tree

5 files changed

+19
-13
lines changed

5 files changed

+19
-13
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,8 @@ jobs:
1919
with:
2020
distribution: temurin
2121
java-version: ${{ matrix.java }}
22+
- uses: jodersky/[email protected]
23+
with:
24+
mill-version: 0.11.2
2225
- name: Build and Test
23-
run: sbt -v +test
26+
run: mill test

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,9 @@ metals.sbt
3030
.idea
3131
.idea_modules
3232
/.worksheet/
33+
34+
# Mill
35+
out/
36+
37+
# Emacs
38+
*.~undo-tree~

build.sbt

Lines changed: 0 additions & 12 deletions
This file was deleted.

build.sc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import mill._, scalalib._
2+
3+
object qw extends RootModule with ScalaModule {
4+
def scalaVersion = "3.3.0"
5+
def publishVersion = "0.1.1-SNAPSHOT"
6+
object test extends ScalaTests with TestModule.Munit {
7+
def ivyDeps = Agg(ivy"org.scalameta::munit::0.7.29")
8+
}
9+
}

0 commit comments

Comments
 (0)