-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (61 loc) · 1.83 KB
/
test.yaml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Run tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: checkout
uses: actions/checkout@v3
with:
lfs: true
- name: build conda environment
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: seqneut-pipeline
environment-file: environment.yml
auto-activate-base: false
auto-update-conda: true
channel-priority: strict
- name: lint code with ruff
# NOTE: must specify the shell so that conda init updates bashrc see:
# https://github.com/conda-incubator/setup-miniconda#IMPORTANT
shell: bash -el {0}
run: ruff check .
- name: lint Jupyter notebooks with ruff
shell: bash -el {0}
run: nbqa ruff .
- name: check code format with black
shell: bash -el {0}
run: black --check .
- name: check snakemake files format with snakefmt
shell: bash -el {0}
run: snakefmt --check .
- name: lint snakemake files with snakemake --lint
shell: bash -el {0}
run: cd test_example && snakemake --lint && cd ..
- name: run pipeline on test example
shell: bash -el {0}
run: >
rm -rf docs
&& cd test_example
&& rm -rf results
&& snakemake --use-conda -j 2
&& cd ..
- name: test titers as expected
shell: bash -el {0}
run: cd test_example && python test_titers_as_expected.py && cd ..
- name: upload results in case of error
uses: actions/upload-artifact@v3
if: failure()
with:
name: results
path: test_example/results
retention-days: 7