We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f275f9b commit 0427a05Copy full SHA for 0427a05
.github/workflows/test.yml
@@ -15,8 +15,7 @@ jobs:
15
run: docker build . --tag snakemake/snakemake-image-kubeflow
16
- name: Run tests
17
run: |
18
- docker run --rm snakemake/snakemake-image-kubeflow bash -c 'snakemake --version'
19
- docker run --entrypoint bash --rm snakemake/snakemake-image-kubeflow snakemake --help
20
- docker run --rm snakemake/snakemake-image-kubeflow snakemake --list-plugins
21
- docker run --rm snakemake/snakemake-image-kubeflow snakemake --list-profiles
22
- docker run --rm snakemake/snakemake-image-kubeflow which setup-wizard
+ for cmd in "snakemake --version" "which setup-wizard"
+ do
+ docker run --rm snakemake/snakemake-image-kubeflow bash -c "source /home/jovyan/.bashrc; $cmd"
+ done
0 commit comments