From 4276afe63b87c05cc6f5e6ec61431d0f649d4c4d Mon Sep 17 00:00:00 2001 From: = Date: Fri, 26 Feb 2021 14:19:09 +0100 Subject: [PATCH] Add clearer steps in github actions for tests --- .github/workflows/tests.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3979ff1d..2efe367e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,11 +40,15 @@ jobs: run: | $DOCKER_COMPOSE build $DOCKER_COMPOSE up -d - ./scripts/migrate-contracts.sh - ./scripts/deploy-subgraph.sh + + - name: Download and migrate contracts + run: ./scripts/migrate-contracts.sh + + - name: Create and deploy subgraph + run: ./scripts/deploy-subgraph.sh - name: Try starting failed services - run: make up + run: $DOCKER_COMPOSE up -d - name: Switch to circles-core run: cd $CIRCLES_CORE