From dc2d178c5573485d313fdfe28234cf2ba00c16f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Herna=CC=81ndez?= Date: Mon, 1 Apr 2024 18:48:39 +0200 Subject: [PATCH 1/2] Test sbtn --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d42d982..a624da4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,5 +66,10 @@ jobs: java-version: ${{ matrix.jdk }} cache: "sbt" - - name: Run `sbt ci-test` - run: sbt ci-test + - name: Creates an sbt session + run: sbtn update + + - run: sbtn "fix --check" + - run: sbtn versionPolicyCheck + - run: sbtn mdoc + - run: sbtn publishLocal From 4b84d1d87e88baa2acb90f20d8a2ca2cba17de2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Herna=CC=81ndez?= Date: Mon, 1 Apr 2024 18:52:02 +0200 Subject: [PATCH 2/2] Test using `sbtn` on CI --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a624da4..d0291a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,9 +67,9 @@ jobs: cache: "sbt" - name: Creates an sbt session - run: sbtn update + run: sbt --client update - - run: sbtn "fix --check" - - run: sbtn versionPolicyCheck - - run: sbtn mdoc - - run: sbtn publishLocal + - run: sbt --client "fix --check" + - run: sbt --client versionPolicyCheck + - run: sbt --client mdoc + - run: sbt --client publishLocal