Skip to content

fix integration test #32

fix integration test

fix integration test #32

Workflow file for this run

name: "Build and deploy Github pages"
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v2
with:
persist-credentials: false
- name: "Set up Python"
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: "Install Python dependencies"
run: |
pip3 install setuptools
pip3 install recommonmark
pip3 install sphinx sphinx-rtd-theme==2.0.0
pip3 install sphinx_markdown_tables
- name: "Build Sphinx Doc"
run: |
make html
- name: "Deploy Github Pages"
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: build/html/