19 lines
360 B
YAML
19 lines
360 B
YAML
|
name: Test Containers
|
||
|
|
||
|
on: push
|
||
|
|
||
|
jobs:
|
||
|
docker:
|
||
|
timeout-minutes: 4
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v1
|
||
|
|
||
|
- name: Start containers
|
||
|
run: docker-compose -f "docker-compose.yml" up -d --build
|
||
|
|
||
|
- name: Stop containers
|
||
|
if: always()
|
||
|
run: docker-compose -f "docker-compose.yml" down
|