Skip to content

Commit

Permalink
added openpyxl installation to docs-check GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-doty committed Aug 16, 2023
1 parent 3da4763 commit c177ef0
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/docs-check.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: "Docs Check"
on: pull_request

jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Sphinx
run: |
python -m pip install --upgrade pip
pip install sphinx sphinx_rtd_theme
- name: Move to docs folder and build
run: |
cd doc
pwd
sphinx-build -T -E -W -b html . _build
name: "Docs Check"
on: pull_request

jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Sphinx
run: |
python -m pip install --upgrade pip
pip install sphinx sphinx_rtd_theme openpyxl
- name: Move to docs folder and build
run: |
cd doc
pwd
sphinx-build -T -E -W -b html . _build

0 comments on commit c177ef0

Please sign in to comment.