-
Notifications
You must be signed in to change notification settings - Fork 4
51 lines (48 loc) · 1.28 KB
/
build-test-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
40
41
42
43
44
45
46
47
48
49
50
51
name: Python Package using Conda
on:
push:
branches: [ devel ]
jobs:
build-linux:
strategy:
max-parallel: 5
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
with:
ref: devel
- name: Set up Python
uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
conda install numpy scipy h5py pyyaml pandas xarray
pip install .
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up Python
uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.12"
- name: Install dependencies
run: |
conda install numpy scipy h5py pyyaml pandas xarray
python -m pip install --upgrade pip
pip install .
pip install pytest pytest-cov
- name: test
run: |
cd test
pytest -v --cov=pytomoatt --cov-report=xml
- name: Upload to codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}