From a9c022f6f94a27d219a49c2678fb60874d468a69 Mon Sep 17 00:00:00 2001 From: Thanh Le Date: Tue, 2 Apr 2024 10:28:20 +0700 Subject: [PATCH] Update github action --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3335a0d..02d696d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,17 +12,17 @@ jobs: steps: - name: Checkout current branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup JVM - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: temurin java-version: 21 cache: sbt - name: Build project - run: sbt compile + run: sbt test - name: Check Formatting run: sbt scalafmtCheckAll