-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·52 lines (48 loc) · 1.79 KB
/
Test.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
52
name: Tests
on: [push]
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13]
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
activate-environment: test
channels: conda-forge
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
shell: bash -l {0}
run: python -m pip install --upgrade pip
- name: MacOS install hdf5 dependencies
if: runner.os == 'macOS'
run: |
brew install hdf5
export HDF5_DIR=/usr/local/
export BLOSC_DIR=/usr/local/
- name: Install Dependencies
shell: bash -l {0}
run: |
conda install cython numpy numba nbconvert pytest jupyter scipy pandas matplotlib pytables phconvert lmfit seaborn setuptools build pyqt fretbursts h2mm-c
- name: Download Files Unix
if: runner.os != 'Windows'
shell: bash -l {0}
run: |
wget -N https://zenodo.org/record/5902313/files/HP3_TE300_SPC630.hdf5
wget -N https://figshare.com/ndownloader/files/4858417 -O HairPin3_RT_400mM_NaCl_A_31_TA.hdf5
- name: Download files Windows
if: runner.os == 'Windows'
shell: bash -l {0}
run: |
curl.exe -L --output HP3_TE300_SPC630.hdf5 --url https://zenodo.org/record/5902313/files/HP3_TE300_SPC630.hdf5
curl.exe -L --output HairPin3_RT_400mM_NaCl_A_31_TA.hdf5 --url https://figshare.com/ndownloader/files/4858417
- name: Test with pytest
shell: bash -l {0}
run: python -m pytest