Feature/dsa 153 updating pori docs #32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test-compose | |
| on: | |
| - workflow_dispatch | |
| - pull_request | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-latest | |
| name: test docker-compose start | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - run: mkdir -p databases/{postgres,orientdb}/{backup,data} | |
| - run: mkdir keys | |
| - run: docker-compose -f "docker-compose.dev.yml" up -d --build | |
| - run: bash tests/test-docker-compose.sh | |
| - run: docker-compose -f "docker-compose.dev.yml" down | |
| if: always() |