Skip to content
name: Build Docs Using Conda
on:
push:
branches: [master]
# branches: [master, 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 Pyapprox dependencies with conda
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# os: [ubuntu-latest]
python-version: [3.8, 3.9, '3.10', '3.11']
os: [ubuntu-latest, macos-latest]
# python-version: [3.7, 3.8] #3.8 currently fails due to numpy error
# solely experienced when using github actions ValueError:
# numpy.ndarray size changed, may indicate binary incompatibility.
# Expected 96 from C header, got 88 from PyObject
steps:
- uses: actions/checkout@v2
- name: Setup Miniconda with Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: pyapprox-base
python-version: ${{ matrix.python-version }}
# channels: defaults,conda-forge
channels: defaults
environment-file: environment.yml
# use-only-tar-bz2: true
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: |
pip install -e . --no-build-isolation
- name: Setup PyApprox Documentation
shell: bash -l {0}
run: |
pip install -e .[docs]
- name: Create PyApprox Documentation
shell: bash -l {0}
run: |
cd docs
make html SPHINXOPTS=-vvv