Allow passing artifacts as data in addition to paths, urls, and zarr stores #850
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 |