Add allow_multiple_scopes_per_type
boolean arg to `use_coordination…
#427
Workflow file for this run
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: Demo data dry-run | |
on: [push, pull_request] | |
jobs: | |
test_demos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- run: | | |
pip install snakemake | |
pip install pyyaml | |
- name: Install vitessce | |
run: pip install -e .[dev,all] | |
- name: Run tests | |
working-directory: ./demos | |
run: snakemake -j 1 --dry-run |