DeepRVAT Pipeline tests π§¬π§ͺπ»π§βπ¬ #20
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: DeepRVAT Pipeline tests | |
run-name: DeepRVAT Pipeline tests π§¬π§ͺπ»π§βπ¬ | |
on: [ push ] | |
jobs: | |
Smoke-RunTraining: | |
uses: ./.github/workflows/run-pipeline.yml | |
with: | |
environment_file: ./deeprvat_env_no_gpu.yml | |
name: Smoke-RunTraining | |
pipeline_cmd: | | |
python -m snakemake -n -j 2 --directory ./example \ | |
--snakefile ./pipelines/run_training.snakefile --show-failed-logs | |
Pipeline-Tests-RunTraining: | |
needs: Smoke-RunTraining | |
uses: ./.github/workflows/run-pipeline.yml | |
with: | |
environment_file: ./deeprvat_env_no_gpu.yml | |
name: Run run_training pipeline | |
no_gpu: true | |
pipeline_cmd: | | |
python -m snakemake -j 2 --directory ./example \ | |
--snakefile ./pipelines/run_training.snakefile --show-failed-logs -F |