Skip to content

Merge branch 'devel' of https://gitlab.com/xumi1993/PyTomoATT into devel #117

Merge branch 'devel' of https://gitlab.com/xumi1993/PyTomoATT into devel

Merge branch 'devel' of https://gitlab.com/xumi1993/PyTomoATT into devel #117

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 }}