17 lines
295 B
YAML
17 lines
295 B
YAML
name: Docker Compose Up and Ping
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build the stack
|
|
run: docker-compose up -d
|
|
|
|
- name: In 30 seconds, check docker ps
|
|
run: sleep 30 && docker ps |