Skip to content

Commit

Permalink
feat: use pipenv for document pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
TomeHirata committed Jun 17, 2024
1 parent 319e5f3 commit 79e37fc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@ jobs:
with:
python-version: '3.11'

- name: Install dependencies
- name: Install pipenv
run: |
python -m pip install --upgrade pip
pip install sphinx sphinx_rtd_theme
pip install pipenv
- name: Install dependencies
run: |
pipenv install --dev
- name: Build documentation
run: |
Expand Down

0 comments on commit 79e37fc

Please sign in to comment.