-
Notifications
You must be signed in to change notification settings - Fork 33
46 lines (42 loc) · 1.39 KB
/
setup.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
name: Conda environment testing
on:
workflow_dispatch:
branches:
- main
- devel
pull_request:
branches:
- main
- devel
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]
env: [snakemake, nextflow, jupyter, quarto]
include:
- env: snakemake
cmd: snakemake -c 1 -d tutorials/snakemake/ -s tutorials/snakemake/snakefile_mrsa.smk
- env: nextflow
cmd: cd tutorials/nextflow && nextflow run main_mrsa.nf
- env: jupyter
cmd: jupyter nbconvert --to HTML tutorials/jupyter/supplementary_material.ipynb
- env: quarto
cmd: conda install -c conda-forge quarto && conda install -c conda-forge deno && export QUARTO_DENO=$(which deno) && quarto render tutorials/quarto/quarto-tutorial-example.qmd --to html
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Conda setup
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
activate-environment: ${{ matrix.env }}-env
environment-file: tutorials/${{ matrix.env }}/environment.yml
channel-priority: strict
- name: Test ${{ matrix.env }} Conda environment
shell: bash -l {0}
run: |
conda list
${{ matrix.cmd }}