Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
elcorto committed Aug 10, 2023
1 parent 29333d7 commit 3bea7e3
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
### dcd test fails in CI, passes locally, skip for now
##./runtests.sh --nobuild -n8 --ignore=test_dcd.py
exit 1
exit 0
jobs:
pages:
Expand All @@ -65,28 +65,28 @@ jobs:
with:
python-version: "3.10"

- name: install
run: |
sudo apt update
##- name: install
## run: |
## sudo apt update

# For Fortran extensions
sudo apt install -y --no-install-recommends \
python3-dev gfortran liblapack-dev
## # For Fortran extensions
## sudo apt install -y --no-install-recommends \
## python3-dev gfortran liblapack-dev

# sphinx related
pip install -r requirements_doc.txt
## # sphinx related
## pip install -r requirements_doc.txt

# sphinx-autodoc needs target package to be installed
pip install -e .
## # sphinx-autodoc needs target package to be installed
## pip install -e .

- name: build
run: |
cd doc
sh generate-doc.sh
##- name: build
## run: |
## cd doc
## sh generate-doc.sh

- name: deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# base dir is checkout: /path/to/psweep
publish_dir: doc/build/html
##- name: deploy
## uses: peaceiris/actions-gh-pages@v3
## with:
## github_token: ${{ secrets.GITHUB_TOKEN }}
## # base dir is checkout: /path/to/psweep
## publish_dir: doc/build/html

0 comments on commit 3bea7e3

Please sign in to comment.