From 1a51c6602851ad7b1e3960c11b53eb6ad60f01c9 Mon Sep 17 00:00:00 2001 From: Gabriel Gunullu <64731573+ggunullu@users.noreply.github.com> Date: Wed, 19 Oct 2022 12:00:46 +0200 Subject: [PATCH] fix(ci): GitHub actions workflow (#6463) --- .github/workflows/push.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index d1b2e6c1e..ad338ee3c 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -1,13 +1,12 @@ name: CI -on: [push] +on: push jobs: build: - name: Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: satackey/action-docker-layer-caching@v0.0.11 - # Ignore the failure of a step and avoid terminating the job. - continue-on-error: true - - run: docker-compose -f docker/docker-compose.dev.yml build - - run: docker-compose -f docker/docker-compose.dev.yml up + - name: Checkout + uses: actions/checkout@v3 + - name: Build docker image + run: docker-compose -f docker/docker-compose.dev.yml build + - name: Create the container and start the tests + run: docker-compose -f docker/docker-compose.dev.yml up --exit-code-from xo \ No newline at end of file