-
Notifications
You must be signed in to change notification settings - Fork 182
39 lines (36 loc) · 1.51 KB
/
build_environments.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
name: Build environments
on: [push, pull_request]
jobs:
Build-environments:
runs-on: ubuntu-latest
strategy:
matrix:
environments:
[
"jupyter-book/introduction/analysis_tools.yml",
"jupyter-book/preprocessing_visualization/preprocessing.yml",
"jupyter-book/cellular_structure/clustering.yml",
"jupyter-book/cellular_structure/annotation.yml",
"jupyter-book/cellular_structure/integration.yml",
"jupyter-book/conditions/compositional.yml",
"jupyter-book/conditions/gsea_pathway.yml",
"jupyter-book/conditions/perturbation_modeling.yml",
"jupyter-book/conditions/differential_gene_expression.yml",
"jupyter-book/trajectories/lineage_tracing.yml",
"jupyter-book/trajectories/pseudotemporal.yml",
"jupyter-book/mechanisms/cell_cell_communication.yml",
"jupyter-book/spatial/spatial.yml",
"jupyter-book/surface_protein/surface_protein.yml",
"jupyter-book/multimodal_integration/paired_integration.yml",
"jupyter-book/multimodal_integration/advanced_integration.yml",
]
steps:
- uses: actions/checkout@v4
- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
with:
cache-downloads: true
environment-file: ${{ matrix.environments }}
environment-name: currentenv
condarc: |
channel_priority: disabled