Skip to content

Commit e085b0d

Browse files
committed
bugfix: Fix -i/--interactive/--no-server/--bsp must be passed in as the first argument
1 parent bd4f194 commit e085b0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
distribution: 'temurin'
3030
java-version: ${{ matrix.java }}
3131
- name: Run tests
32-
run: ./mill -DscalaNextVersion=${{ env.SCALA_NEXT_VERSION }} -i __.publishArtifacts + __.test
32+
run: ./mill -i -DscalaNextVersion=${{ env.SCALA_NEXT_VERSION }} __.publishArtifacts + __.test
3333

3434
check-binary-compatibility:
3535
runs-on: ubuntu-latest
@@ -42,7 +42,7 @@ jobs:
4242
distribution: 'temurin'
4343
java-version: 17
4444
- name: Check Binary Compatibility
45-
run: ./mill -DscalaNextVersion=${{ env.SCALA_NEXT_VERSION }} -i __.mimaReportBinaryIssues
45+
run: ./mill -i -DscalaNextVersion=${{ env.SCALA_NEXT_VERSION }} __.mimaReportBinaryIssues
4646

4747
publish-sonatype:
4848
if: github.repository == 'com-lihaoyi/requests-scala' && contains(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)