Skip to content

[CI] Github Actions에서 Docker Compose 사용 #5

[CI] Github Actions에서 Docker Compose 사용

[CI] Github Actions에서 Docker Compose 사용 #5

Workflow file for this run

name: Build Test (Frontend)
on:
pull_request:
branches:
- develop
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3
with:
submodules: true
token: ${{ secrets.READ_PRIVATE_SUBMODULE_TOKEN }}
- name: Waiting build using Docker Compose
run: |
docker compose -f docker-compose.dev.yml up -d
docker compose -f docker-compose.dev.yml logs -f