feat(CI): use github action (#5987)

This commit is contained in:
Florent BEAUCHAMP
2022-03-11 17:18:21 +01:00
committed by GitHub
parent db75f8046c
commit 0a412c0ef7
5 changed files with 49 additions and 23 deletions

13
.github/workflows/push.yml vendored Normal file
View File

@@ -0,0 +1,13 @@
name: CI
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