Skip to content

Add test for all_by_all_pairwise_similarity() in semsimian using cust… #405

Add test for all_by_all_pairwise_similarity() in semsimian using cust…

Add test for all_by_all_pairwise_similarity() in semsimian using cust… #405

Workflow file for this run

name: Sphinx Documentation
on:
push:
branches: [ main ]
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
with:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- name: Set up Python 3.
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install Poetry.
uses: snok/[email protected]
- name: install
run: poetry install -E docs
- name: Build documentation.
run: |
mkdir gh-pages
touch gh-pages/.nojekyll
poetry run make gendoc
cd docs/
poetry run sphinx-build -b html . _build
cp -r _build/* ../gh-pages/
cp -r datamodels/* ../gh-pages/
- name: Deploy documentation.
if: ${{ github.event_name == 'push' }}
uses: JamesIves/[email protected]
with:
branch: gh-pages
force: true
folder: gh-pages