mirror of
https://github.com/Toumash/mlflow-docker
synced 2025-11-04 15:19:21 +01:00
12 lines
261 B
YAML
12 lines
261 B
YAML
name: Docker Compose Actions Workflow
|
|
on: push
|
|
jobs:
|
|
verify:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build the stack
|
|
run: docker-compose config
|
|
- name: Test
|
|
run: docker-compose up -d --build
|