aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/main.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 06ad7c7..70cf19f 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -13,7 +13,8 @@ jobs:
build:
strategy:
matrix:
- scala: ["2.13.1", "2.12.10", "2.11.12", "2.10.7"]
+ scala: ["2.13.1"]
+ # , "2.12.10", "2.11.12", "2.10.7"]
runs-on: ubuntu-latest
steps:
@@ -22,11 +23,11 @@ jobs:
- uses: jodersky/setup-mill@master
- name: Compile
- run: mill -D scala.version=${{matrix.scala}} commando.compile
+ run: mill --disable-ticker -s -D scala.version=${{matrix.scala}} commando.compile
- name: Test
if: matrix.scala == '2.13.1'
- run: mill -D scala.version=${{matrix.scala}} commando.test
+ run: mill --disable-ticker -s -D scala.version=${{matrix.scala}} commando.test
- name: Publish Tag
if: startsWith(github.ref, 'refs/tags/')