aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
authorJiuyang Liu2021-03-22 19:35:04 +0000
committerGitHub2021-03-22 12:35:04 -0700
commit09c4baf90ca61c06fd87467110f62db5b6a999c2 (patch)
tree7800993e0abad0685fda90a391f6221c3b1c3d63 /.github/workflows/test.yml
parent49b823244732e8d3a4b0fe91d0f10625fea34eec (diff)
Fix mill compile and add to CI (#2147)
* fix for #2071 * add mill compile to CI
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index f6af7cbd..4e0c8125 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -46,6 +46,24 @@ jobs:
- name: Binary compatibility
run: sbt ++${{ matrix.scala }} mimaReportBinaryIssues
+ mill:
+ name: Mill Sanity Check
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ scala: [2.13.4, 2.12.13]
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Setup Scala
+ uses: olafurpg/setup-scala@v10
+ - name: Cache
+ uses: coursier/cache-action@v5
+ - name: Setup Mill
+ uses: jodersky/setup-mill@v0.2.3
+ - name: Mill sanity check
+ run: mill _[${{ matrix.scala }}].compile
+
# TODO find better way to express Ops and AddNot as single test
equiv:
name: formal equivalence