Skip to content

Commit

Permalink
fix(ci): deps missing for doc generation
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandreteles committed Sep 14, 2024
1 parent 0e59cd5 commit 29db1cb
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,17 @@ jobs:
fetch-depth: 0
- name: Setup pages
uses: actions/configure-pages@v5
- name: Install pdoc3
run: pipx install pdoc3
- name: Install required tools
run: |
pipx install pdoc3
pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'poetry'
- name: Install dependencies
run: poetry install
- name: Build docs
run: pdoc --html --output-dir docs TikTok
- name: Upload pages artifacts
Expand Down

0 comments on commit 29db1cb

Please sign in to comment.