Skip to content

Build and Test Using Conda #364

Build and Test Using Conda

Build and Test Using Conda #364

name: Build and Test Using Conda
on:
# push:
# branches: [master, devel]
# branches: [master]
pull_request:
branches: [devel]
workflow_dispatch:
# # schedule:
# # # * is a special character in YAML so you have to quote this string
# # - cron: '*/0 * * * *' # run once a day
jobs:
pyapprox_unit_tests:
name: Setup conda-based build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# quotes needed around two-digit versions
python-version: [3.9, '3.10', '3.11']
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Setup Miniconda with Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: pyapprox-base
python-version: ${{ matrix.python-version }}
channels: defaults
environment-file: environment.yml
auto-update-conda: true
auto-activate-base: false
- name: Conda list
shell: bash -l {0} # - l {0} is needed to activate created env
run: |
conda list
conda env list
- name: Setup PyApprox
shell: bash -l {0}
run: |
python -m pip install -e .
- name: Test PyApprox
shell: bash -l {0}
run: |
python -m coverage run -m unittest discover pyapprox
python -m coverage report