Skip to content

refactor: rename "tabulation_method" in libDelhommeau (#503) #1

refactor: rename "tabulation_method" in libDelhommeau (#503)

refactor: rename "tabulation_method" in libDelhommeau (#503) #1

Workflow file for this run

name: Build and deploy documentation
on:
push:
branches:
- master
paths:
- 'docs/**'
pull_request:
paths:
- 'docs/**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Capytaine and other dependencies
run: pip install .[optional,docs]
- name: Build documentation
run: cd docs && make
- name: Deploy pages
if: github.ref == 'refs/heads/master' # Only deploy the version merged into the master branch
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
folder: ./docs/_build/html/
repository-name: capytaine/capytaine.github.io
branch: main
target-folder: master/
clean: true
token: ${{ secrets.TOKEN_PAGES }}