Skip to content

Workflow file for this run

name: Docker Compose Actions Workflow
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the image
run: docker build -t my-image ./src/tests
steps:

Check failure on line 10 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yaml

Invalid workflow file

You have an error in your yaml syntax on line 10
- name: Build the stack
run: docker-compose --project-directory ./ -f src/tests/docker-compose.yml up -d