Skip to content

Commit

Permalink
Hello, mill
Browse files Browse the repository at this point in the history
  • Loading branch information
windymelt committed Sep 2, 2023
1 parent 0768e9f commit 90d15ce
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 13 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,8 @@ jobs:
with:
distribution: temurin
java-version: ${{ matrix.java }}
- uses: jodersky/[email protected]
with:
mill-version: 0.11.2
- name: Build and Test
run: sbt -v +test
run: mill test
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,9 @@ metals.sbt
.idea
.idea_modules
/.worksheet/

# Mill
out/

# Emacs
*.~undo-tree~
12 changes: 0 additions & 12 deletions build.sbt

This file was deleted.

9 changes: 9 additions & 0 deletions build.sc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import mill._, scalalib._

object qw extends RootModule with ScalaModule {
def scalaVersion = "3.3.0"
def publishVersion = "0.1.1-SNAPSHOT"
object test extends ScalaTests with TestModule.Munit {
def ivyDeps = Agg(ivy"org.scalameta::munit::0.7.29")
}
}

0 comments on commit 90d15ce

Please sign in to comment.