Update flake8 requirement from ~=3.7 to >=3.7,<8.0 #445
This file contains 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: Docker Compose Test | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the stack | |
run: | | |
cd deployment | |
docker-compose up -d | |
- uses: jakejarvis/wait-action@master | |
with: | |
time: "60" | |
- name: Check running containers | |
run: | | |
cd deployment | |
docker-compose logs | |
# TODO It would be nice to upload an example report as a test | |
- name: Run MegaQC Help | |
run: docker exec deployment_megaqc_1 megaqc --help |