Support scope_prefix parameter in link_views_by_dict #573
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 "pulp==2.7.0" | |
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 |