From 79ec0cb6ff639cabb2a03f43a6b0410514ae1abc Mon Sep 17 00:00:00 2001 From: Jason Fox Date: Thu, 8 Aug 2024 16:13:12 +0200 Subject: [PATCH] Update workflows --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d2eb0e..3769070 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,14 +26,14 @@ jobs: submodules: recursive - name: Build Images run: | - ./services create test || true + ./services create || true - name: Run Orion run: | - ./services orion test && ./services stop test + ./services orion && ./services stop - name: Run Stellio run: | - ./services stellio test && ./services stop test + ./services stellio && ./services stop - name: Run Scorpio run: | - ./services scorpio test && ./services stop test + ./services scorpio && ./services stop