Skip to content

Commit 322a1f4

Browse files
Switch to Mill (#496)
1 parent 1522a14 commit 322a1f4

File tree

12 files changed

+859
-247
lines changed

12 files changed

+859
-247
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
jvm: 8
2626
- name: Test
27-
run: sbtn ++${{ matrix.SCALA_VERSION }} test
27+
run: ./mill -i '__[${{ matrix.SCALA_VERSION }}].test'
2828

2929
bin-compat:
3030
runs-on: ubuntu-latest
@@ -37,8 +37,8 @@ jobs:
3737
- uses: coursier/[email protected]
3838
with:
3939
jvm: 8
40-
- name: Test
41-
run: sbtn +mimaReportBinaryIssues
40+
- name: Check
41+
run: ./mill -i __.mimaReportBinaryIssues
4242

4343
format:
4444
runs-on: ubuntu-latest
@@ -72,7 +72,7 @@ jobs:
7272
- name: Wrap GPG binary
7373
run: .github/scripts/wrap-gpg.sh
7474
- name: Release
75-
run: sbtn ci-release
75+
run: ./mill -i publishSonatype __.publishArtifacts
7676
env:
7777
PGP_PASSPHRASE: ${{ secrets.PUBLISH_SECRET_KEY_PASSWORD }}
7878
PGP_SECRET: ${{ secrets.PUBLISH_SECRET_KEY }}

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
target/
1+
out/
22
.bsp/
33
.idea
44
.idea_modules
@@ -7,4 +7,3 @@ target/
77
.bloop/
88
.metals/
99
.vscode/
10-
project/metals.sbt

.mill-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.11.7-109-59a5cb

build.sbt

-134
This file was deleted.

0 commit comments

Comments
 (0)