From b857132d3c673bad3e26cd5e18cf0b9d16f83114 Mon Sep 17 00:00:00 2001 From: Tom Wey Date: Mon, 14 Oct 2024 10:22:32 +0100 Subject: [PATCH] Use the setup-sbt action It turns out SBT isn't available in the latest ubuntu image: https://github.com/actions/setup-java/issues/694 --- .github/workflows/ci-scala.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci-scala.yml b/.github/workflows/ci-scala.yml index 800ea37cd..3880b90bc 100644 --- a/.github/workflows/ci-scala.yml +++ b/.github/workflows/ci-scala.yml @@ -44,6 +44,9 @@ jobs: java-version: '21' cache: 'sbt' + - name: Setup SBT + uses: sbt/setup-sbt@v1 + - name: Run tests and build subproject JAR run: sbt "project ${{ matrix.subproject }}" test assembly