-
Notifications
You must be signed in to change notification settings - Fork 7
41 lines (35 loc) · 1.03 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
38
39
40
41
name: Build lume-model
on:
push:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
python-version: ["3.9"]
name: Python ${{ matrix.python-version }}, ${{ matrix.os }} build
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
miniforge-variant: Mambaforge
channels: conda-forge
activate-environment: lume-model-dev
environment-file: dev-environment.yml
- name: Install lume-model
shell: bash -l {0}
run: |
pip install -e .
- name: Run Tests
shell: bash -l {0}
run: |
pytest -ra --pyargs tests
- name: Build package
shell: bash -l {0}
run: |
mamba install conda-build
mamba build -q conda-recipe --python=${{ matrix.python-version }} --output-folder bld-dir