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