From 5698d337bf1e81ce85703800ffefb4ddf24b6ee9 Mon Sep 17 00:00:00 2001 From: Damian Reeves <957246+DamianReeves@users.noreply.github.com> Date: Fri, 4 Oct 2024 15:48:13 -0500 Subject: [PATCH] Re-enable Lint step but join with compile --- .github/workflows/ci-cd.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 50c7457..ac1c413 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -30,8 +30,7 @@ concurrency: cancel-in-progress: true jobs: - lint: - if: false + compile-and-lint: runs-on: ubuntu-latest timeout-minutes: 10 steps: @@ -46,8 +45,10 @@ jobs: java-version: "17" - name: Cache scala dependencies uses: coursier/cache-action@v6 + - name: Compile code + run: ./mill -i -k -j 0 __.compile - name: Lint code - run: ./mill __.checkFormat + run: ./mill -i -k -j 0 __.checkFormat test-jvm: runs-on: ubuntu-latest