-
Notifications
You must be signed in to change notification settings - Fork 4
50 lines (42 loc) · 1.09 KB
/
main.yml
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
48
49
50
# github.com/snakemake-workflows/dna-seq-varlociraptor/blob/master/.github/workflows/main.yml
name: "Main CI"
on:
pull_request:
branches:
- main
- develop
paths-ignore:
- "README.md"
push:
branches:
- main
- develop
paths-ignore:
- "README.md"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: qadabra
mamba-version: "*"
channels: conda-forge,defaults,bioconda
channel-priority: true
python-version: "3.9"
- name: Install conda packages
shell: bash -l {0}
run: mamba install snakemake click biom-format pandas numpy cython
- name: Install pip packages
shell: bash -l {0}
run: pip install iow
- name: Install qadabra
shell: bash -l {0}
run: pip install -e .
- name: Run Snakemake
shell: bash -l {0}
run: make snaketest