Update description and bringup generated files to be also applicable to mobile robots. Update generated documenation in README files. Add templates for simulation and moveit setup. #703
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: Build and Check Sphinx Page | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
- foxy | |
jobs: | |
build-multiversion: | |
name: Check Multiversion | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
cache: 'pip' | |
- name: Install Python dependencies | |
run: | | |
cd docs/ | |
python -m pip install --upgrade pip | |
pip install --upgrade --requirement requirements.txt | |
- name: Build multiversion | |
run: | | |
cd docs/ | |
make multiversion |