-
Notifications
You must be signed in to change notification settings - Fork 6
37 lines (31 loc) · 1.01 KB
/
build.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
name: "Build"
on:
push:
branches:
- "*"
jobs:
build:
name: "Build and test"
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.8]
numpy: [1.15]
steps:
- uses: actions/checkout@v2
- name: "Setup Python"
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: "Setup Conda"
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
channels: conda-forge,bioconda,defaults
conda-build-version: "3.21.7"
- name: "Install Conda client"
run: conda install -c anaconda anaconda-client
- name: "Build Conda package"
run: |
conda build --no-build-id --numpy ${{ matrix.numpy }} --output-folder . .
conda convert -p osx-64 linux-64/*.tar.bz2