From 779fb51d6251874f84da8e012dc89a1f65856894 Mon Sep 17 00:00:00 2001 From: Oliver <20188437+olivergrabinski@users.noreply.github.com> Date: Wed, 27 Mar 2024 14:33:43 +0100 Subject: [PATCH] Separate integration step --- .github/workflows/ci-delta-ship.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-delta-ship.yml b/.github/workflows/ci-delta-ship.yml index bf4eab14e4..1e6af4fe61 100644 --- a/.github/workflows/ci-delta-ship.yml +++ b/.github/workflows/ci-delta-ship.yml @@ -45,5 +45,8 @@ jobs: - name: Unit tests run: | sbt -Dsbt.color=always -Dsbt.supershell=false \ - ship/testOnly *Suite \ - ship/testOnly *Spec + ship/testOnly *Suite + - name: Integration tests + run: | + sbt -Dsbt.color=always -Dsbt.supershell=false \ + ship/it:testOnly *Spec