Skip to content

Commit 7fac3c2

Browse files
committed
fix: add required dir in examples + formatting
1 parent aead89f commit 7fac3c2

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,25 @@ Whether used disk space shall be printed if Snakemake fails. Can be either `true
3232

3333
```yaml
3434
- name: Linting
35-
uses: snakemake/snakemake-github-action@v1
35+
uses: snakemake/snakemake-github-action@v2
3636
with:
37-
directory: '.test'
38-
snakefile: 'workflow/Snakefile'
39-
args: '--lint'
37+
directory: ".test"
38+
snakefile: "workflow/Snakefile"
39+
args: "--lint"
4040

4141
- name: Testing
4242
uses: snakemake/snakemake-github-action@v2
4343
with:
44-
directory: '.test'
45-
snakefile: 'workflow/Snakefile'
46-
args: '--cores 1 --sdm conda --conda-cleanup-pkgs cache'
47-
stagein: '' # additional preliminary commands to run (can be multiline)
44+
directory: ".test"
45+
snakefile: "workflow/Snakefile"
46+
args: "--cores 1 --sdm conda --conda-cleanup-pkgs cache"
47+
stagein: "" # additional preliminary commands to run (can be multiline)
4848
show-disk-usage-on-error: true
4949

50-
5150
- name: Create container file
5251
uses: snakemake/snakemake-github-action@v2
5352
with:
54-
snakefile: 'workflow/Snakefile'
55-
task: 'containerize'
53+
directory: ".test"
54+
snakefile: "workflow/Snakefile"
55+
task: "containerize"
5656
```

0 commit comments

Comments
 (0)