From e4935bc0ac0c83e6bb08bd85c023c79e38e498e4 Mon Sep 17 00:00:00 2001 From: Mark Canlas Date: Sun, 7 Jul 2024 20:48:48 -0400 Subject: [PATCH] name steps --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a50c307..7a8c6b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,10 +17,12 @@ jobs: java-version: '22' cache: sbt - - run: sbt 'scalafixAll --check' scalafmtSbtCheck scalafmtCheck + - name: Check linting and formatting + run: sbt 'scalafixAll --check' scalafmtSbtCheck scalafmtCheck env: GH_PACKAGES_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }} - - run: sbt +test + - name: Unit test + run: sbt +test env: GH_PACKAGES_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }}