Compute log evidence per chain for diagnosis #439
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.11] | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/[email protected] | |
- name: Install dependencies | |
run: | | |
sudo apt install pandoc | |
python -m pip install --upgrade pip | |
pip install -r requirements/requirements-core.txt | |
pip install -r requirements/requirements-test.txt | |
pip install -r requirements/requirements-docs.txt | |
- name: Install harmonic | |
run: | | |
python setup.py build_ext --inplace --define CYTHON_TRACE | |
- name: Run tests | |
run: | | |
pytest --cov . | |
codecov --token d8f839b7-cf16-4d43-83c7-9d595f6e1d44 | |
- name: Build Documentation | |
run: | | |
cd docs && make html | |
- name: Deploy | |
if: github.ref == 'refs/heads/main' | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: docs/_build/html # The folder the action should deploy. |