We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82c182b commit 9969084Copy full SHA for 9969084
1 file changed
.github/workflows/test-envs.yml
@@ -0,0 +1,28 @@
1
+name: Test conda envs
2
+on: [push]
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+ defaults:
7
+ run:
8
+ shell: bash -el {0}
9
+ strategy:
10
+ matrix:
11
+ include:
12
+ - env: panphylo.yaml
13
+ path: 01_PanPhylo_analysis
14
+ - env: compar_genomics.yaml
15
+ path: 02_Comparative_genomics
16
+ - env: dating.yaml
17
+ path: 03_Dating
18
+ - env: annotation.yaml
19
+ path: 04_Functional_annotation
20
+ - env: geomap.yaml
21
+ path: 05_Map
22
+ steps:
23
+ - uses: actions/checkout@v4
24
+ - uses: conda-incubator/setup-miniconda@v4
25
+ with:
26
+ miniforge-version: latest
27
+ activate-environment: test
28
+ - run: conda env create -f ${{ matrix.path }}/${{ matrix.env }} --dry-run
0 commit comments