add agile_modbus_compute_response_length_from_request API #10
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: doxygen | |
on: | |
push: | |
branches: | |
# Make sure this is the branch name you are using | |
- master | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
deploy-gh-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# If your document requires Git submodules, uncomment the next line | |
# submodules: true | |
- name: Install Tools | |
shell: bash | |
run: | | |
sudo apt-get update | |
sudo apt-get -qq install doxygen graphviz | |
- name: generat doxygen html | |
shell: bash | |
run: | | |
ls | |
cd doc/doxygen | |
doxygen Doxyfile | |
- name: Deployment documentation | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
# This is the branch name to which the document is deployed | |
branch: gh-pages | |
folder: doc/doxygen/output |