[FIX] fix some typos #3081
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
# On each Pull request against branch documentation, | |
# build documentation and check that the sphinx build works | |
name: OpenUpgrade documentation | |
on: | |
pull_request: | |
jobs: | |
documentation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out OpenUpgrade Documentation | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Requirements Installation | |
run: | | |
pip install -r ./requirements.txt | |
- name: Delete previously generated documentation | |
run: | | |
rm -r ./docs/ | |
- name: Restore doc folder and .nojekill file | |
run: | | |
mkdir ./docs/ | |
touch ./docs/.nojekyll | |
- name: OpenUpgrade Docs | |
run: | | |
# try to build the documentation | |
sh ./build_openupgrade_docs |