-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (44 loc) · 1.68 KB
/
Copy pathbuild.yaml
File metadata and controls
47 lines (44 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Tests
on: [push, pull_request]
jobs:
Testing_dry_run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test workflow syntax (dry run)
uses: snakemake/snakemake-github-action@v1.25.1
with:
directory: .
snakefile: workflow/Snakefile
args: "--configfile .tests/ci/config/main.yaml --use-conda --show-failed-logs -j 2 --dry-run --conda-frontend conda"
stagein: "conda config --set channel_priority strict"
Testing_human_minimal:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test workflow (Human chr22 only) - dry run
uses: snakemake/snakemake-github-action@v1.25.1
with:
directory: .
snakefile: workflow/Snakefile
args: "--configfile .tests/ci/config/main.yaml --use-conda --show-failed-logs -j 2 --dry-run --conda-frontend conda"
Testing_selscan_module:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test Selscan module - dry run
uses: snakemake/snakemake-github-action@v1.25.1
with:
directory: .
snakefile: workflow/Snakefile
args: "--configfile .tests/ci/config/main.yaml --use-conda --show-failed-logs -j 2 --dry-run --conda-frontend conda --until merge_selscan_scores"
Testing_betascan_module:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test Betascan module - dry run
uses: snakemake/snakemake-github-action@v1.25.1
with:
directory: .
snakefile: workflow/Snakefile
args: "--configfile .tests/ci/config/main.yaml --use-conda --show-failed-logs -j 2 --dry-run --conda-frontend conda --until merge_b1_scores"