From e875a1d69aa56092445c3a10b442eebf73f5cb82 Mon Sep 17 00:00:00 2001 From: doofin <8177dph@gmail.com> Date: Fri, 20 Sep 2024 23:12:59 +0200 Subject: [PATCH] chore: Refactor GitHub Actions workflow to simplify and optimize test job --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bcce8ab..f02872c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ env: jobs: run: - name: compile and test + name: test strategy: matrix: java-version: [17] @@ -27,8 +27,5 @@ jobs: java-version: ${{ matrix.java-version }} cache: sbt - - name: compile the project - run: sbt compile - - name: Run the unit tests run: sbt test