-
Notifications
You must be signed in to change notification settings - Fork 5
39 lines (39 loc) · 974 Bytes
/
conda.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: conda
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ "macos-latest", "ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install conda and solve/verify conda environment
run: |
./install-conda.sh
- name: Run tests
run: |
source ./env.sh
conda list
python imports.py
samtools --version
bcftools --version
tabix --version
- uses: actions/upload-artifact@v4
with:
name: environment-pinned-${{ matrix.os }}
path: environment-pinned-${{ matrix.os }}.yml
merge:
runs-on: ubuntu-latest
needs: build
steps:
- name: Merge artifacts
uses: actions/upload-artifact/merge@v4
with:
name: environment-pinned
pattern: environment-pinned-*