Skip to content

Use docker compose v2 in ci #353

Use docker compose v2 in ci

Use docker compose v2 in ci #353

Workflow file for this run

name: Application CI
on:
push:
branches: ["*"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: docker compose pull
- name: Docker Layer Caching
uses: satackey/[email protected]
continue-on-error: true
- name: '[Run] Install the project'
id: install
run: |
make install
- name: '[Run] 🚀 Test (backend)'
run: make test-backend
- name: '[Run] 🚀 Test (frontend)'
run: make test-frontend