You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
snakemake
v1.6.1
This action runs Snakemake on the repository.
Required The working directory to use. Default .test
.
The Snakefile containing the workflow description. Default Snakefile
.
Additional arguments to pass to Snakemake.
Preliminary commands to run before the workflow execution.
- name: Linting
uses: snakemake/[email protected]
with:
directory: '.test'
snakefile: 'workflow/Snakefile'
args: '--lint'
- name: Testing
uses: snakemake/[email protected]
with:
directory: '.test'
snakefile: 'workflow/Snakefile'
args: '--cores 1 --use-conda --conda-cleanup-pkgs cache'
stagein: '' # additional preliminary commands to run (can be multiline)