Merge pull request #9 from flowersteam/ClementRomac-patch-1 #13
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: generate_doc | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
- name: Setup Python env | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.7' | |
- name: Install tensorflow | |
run: pip install tensorflow==1.15.4 | |
- name: Install env | |
run: pip3 install -e . | |
- name: Install pdoc3 | |
run: | |
pip3 install pdoc3==0.9.2 | |
- name: Generate doc | |
run: pdoc --html --output-dir doc TeachMyAgent/ --template-dir TeachMyAgent/doc/templates/ --skip-errors --force | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: doc/TeachMyAgent | |
destination_dir: doc |