fix(ci): GitHub actions workflow (#6463)

This commit is contained in:
Gabriel Gunullu
2022-10-19 12:00:46 +02:00
committed by GitHub
parent 05161bd4df
commit 1a51c66028

View File

@@ -1,13 +1,12 @@
name: CI name: CI
on: [push] on: push
jobs: jobs:
build: build:
name: Test
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - name: Checkout
- uses: satackey/action-docker-layer-caching@v0.0.11 uses: actions/checkout@v3
# Ignore the failure of a step and avoid terminating the job. - name: Build docker image
continue-on-error: true run: docker-compose -f docker/docker-compose.dev.yml build
- 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 run: docker-compose -f docker/docker-compose.dev.yml up --exit-code-from xo