Fix sharing model in tabular dyna #98
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
push: | |
branches: [main] | |
permissions: | |
contents: write | |
jobs: | |
doc: | |
name: Generate and publish website | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install doc dependencies | |
run: pip install -r docs/requirements.txt | |
- name: Install MORL-Baselines | |
run: | | |
sudo apt-get install libgmp-dev | |
pip install -e .[all] | |
- name: Build | |
run: sphinx-build -b dirhtml -v docs _build | |
- name: Remove .doctrees | |
run: rm -r _build/.doctrees | |
- name: Upload to GitHub Pages | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: _build | |
branch: gh-pages |