Skip to content

Update setup.py (#336) #5

Update setup.py (#336)

Update setup.py (#336) #5

name: Website Deploy (Unstable)
on:
push:
branches:
- development
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
id: pip-cache
run: |
python -m pip install --upgrade pip
echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v2
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py', '**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install gfortran swig libhdf5-serial-dev libmpich-dev pandoc
python -m pip install coverage cpp-coveralls flake8 pytest
python -m pip install .[doc]
python -m pip install .[ml]
- name: Make dependencies
env:
PATH_TO_POSYDON: /home/runner/work/POSYDON/POSYDON/
run: |
cd docs && make html; cd ../
touch docs/_build/html/.nojekyll
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages-dev
build_dir: docs/_build/html/
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}