Adding a class for the TC "Transmit packet" #202
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 build | |
on: | |
push: | |
branches: [dev,main] | |
pull_request: | |
branches: [dev,main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
# Standard drop-in approach that should work for most people. | |
- uses: ammaraskar/sphinx-action@master | |
with: | |
docs-folder: "docs/" | |
# Create an artifact of the html output. | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: documentation_html | |
path: docs/_build/html/ |