Skip to content

autocorrelation adaptation, qq test update #18

autocorrelation adaptation, qq test update

autocorrelation adaptation, qq test update #18

Workflow file for this run

name: Build and Deploy Sphinx Documentation
on:
push:
branches:
- master # Set this to the branch where your docs are updated
pull_request:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10' # Set this to the Python version you use
- name: Install dependencies
run: |
pip install sphinx sphinx_rtd_theme nbsphinx pandoc
# Add any other dependencies here
- name: Build Sphinx Documentation
run: |
cd docs
make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html