From c16fb0d0cf6572a74ff3581e94ec9f5042dd3106 Mon Sep 17 00:00:00 2001 From: Katja Goltsova <katja.goltsova@protonmail.com> Date: Fri, 10 Jun 2022 18:23:31 +0200 Subject: [PATCH] In the CI, run scalafix and scalafmt on the entire project --- .github/workflow/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflow/ci.yml b/.github/workflow/ci.yml index ffc7ba44..cadf345f 100644 --- a/.github/workflow/ci.yml +++ b/.github/workflow/ci.yml @@ -16,8 +16,9 @@ jobs: - name: Compile run: sbt compile - name: Check style - run: sbt "scalafix --check" + run: sbt "scalafixAll --check" - name: Check format - run: sbt scalafmtCheck + run: sbt scalafmtCheckAll - name: Run tests - run: sbt test \ No newline at end of file + run: sbt test + -- GitLab