Apply suggestions from code review #8
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: docs | |
on: | |
push | |
jobs: | |
minimal_explicit_build_and_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set up python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: install dependencies | |
run: pip install numpy | |
- name: build splinepy linux | |
run: CC=clang-14 CXX=clang++-14 pip install . -v --config-settings=cmake.args=-DSPLINEPY_MORE=OFF | |
- name: test | |
run: | | |
pip install funi>=0.0.1 | |
cd tests && python3 -m unittest discover . -v | |
- name: build docs | |
run: | | |
pip install -r ./docs/requirements.txt | |
python docs/source/handle_markdown.py | |
sphinx-build -W -b html docs/source docs/build -j auto | |
- name: deploy docs only if it is pushed to main | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
with: | |
#publish_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/build | |
force_orphan: true |