Merge pull request #35 from quarkslab/add_mangled_name #56
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: doc | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Dependencies | |
run: | | |
pip install '.[doc]' | |
sudo apt-get update && sudo apt-get install --yes doxygen | |
- name: Deploy doc | |
run: mkdocs gh-deploy --force |