From 9b28306a451101f7e52de8e1e6c0fb451911641a Mon Sep 17 00:00:00 2001 From: m-danya Date: Sun, 31 Mar 2024 22:10:02 +0300 Subject: [PATCH] Fix #4 --- .github/workflows/actions.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index 964ea73..7836ea3 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -8,13 +8,12 @@ jobs: - uses: actions/checkout@v2 - name: Set up .env run: cp .env.sample .env - - name: Run containers - env: - COMPOSE_INTERACTIVE_NO_CLI: 1 + - name: Build and run containers run: DOCKER_BUILDKIT=1 docker-compose up -d backend - name: Check running containers run: docker-compose ps -a - name: Test with pytest env: - COMPOSE_INTERACTIVE_NO_CLI: 1 + ACTIONS_RUNNER_DEBUG: true + ACTIONS_STEP_DEBUG: true run: docker-compose exec --no-TTY backend pytest \ No newline at end of file