From cc7e16901cd88f561fcf2a99cdaa49aaa99ba345 Mon Sep 17 00:00:00 2001 From: Piotr Stachyra Date: Mon, 23 Oct 2023 16:27:49 +0200 Subject: [PATCH] Build Docker & Run Integration Tests in one step --- .github/workflows/integration.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index dbb23c1..4412957 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -33,12 +33,8 @@ jobs: with: stream: stable - - name: 🛠️ Build Docker + - name: 🛠️ Build Docker & 🧪 Run Integration Tests env: TAG: integtation-test - run: nix-shell --run "make docker" - - - name: 🧪 Run Integration Tests - env: UPTIME_SERVICE_SECRET: ${{ secrets.UPTIME_SERVICE_SECRET }} - run: nix-shell --run "make integration-test" + run: nix-shell --run "make docker integration-test"