From 02f8328ca2e7e07a96dca064061c6cc81d2d8670 Mon Sep 17 00:00:00 2001 From: Thanh Le Date: Mon, 20 Jan 2025 16:27:27 +0100 Subject: [PATCH] Add setup-sbt action --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b450b9..e888c3d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,8 @@ jobs: with: distribution: temurin java-version: 21 + - name: Setup sbt + uses: sbt/setup-sbt@v1 - run: sbt compile lint: @@ -26,6 +28,8 @@ jobs: with: distribution: temurin java-version: 21 + - name: Setup sbt + uses: sbt/setup-sbt@v1 - run: sbt check test: @@ -36,4 +40,6 @@ jobs: with: distribution: temurin java-version: 21 + - name: Setup sbt + uses: sbt/setup-sbt@v1 - run: sbt test