From 00ca4fbf6137e1a7205685b05a6abe7738a10428 Mon Sep 17 00:00:00 2001
From: Katja Goltsova <katja.goltsova@protonmail.com>
Date: Mon, 1 Aug 2022 22:58:07 +0200
Subject: [PATCH] In CI, run tests before checking style

---
 .github/workflows/ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index cadf345f..a7cf713b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -15,10 +15,10 @@ jobs:
           java-version: 1.8
       - name: Compile
         run: sbt compile
+      - name: Run tests
+        run: sbt test
       - name: Check style
         run: sbt "scalafixAll --check"
       - name: Check format
         run: sbt scalafmtCheckAll
-      - name: Run tests
-        run: sbt test
 
-- 
GitLab