Skip to content

Build Docker Image CI #24

Build Docker Image CI

Build Docker Image CI #24

Workflow file for this run

name: Build Docker Image CI
on:
workflow_run:
workflows: ["Tests CI"]
types:
- completed
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Build Docker Image
run: |
docker-compose up --build -d
- name: Run Docker image
run: |
docker run etl-awesome-api-compose