Update instructions for merged and released description repo #55
Workflow file for this run
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: Pull Request Docs Check | |
on: | |
push: | |
branches: | |
- main | |
- ros2 | |
pull_request: | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
pip install sphinx-rtd-theme sphinx | |
- name: Build documentation | |
run: | | |
cd ur_documentation/docs | |
make html |