Skip to content

Commit

Permalink
fix: Install pandoc which is required by sphinx
Browse files Browse the repository at this point in the history
  • Loading branch information
iwishiwasaneagle committed Feb 3, 2023
1 parent 4b6fffc commit 433b146
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,12 @@ jobs:
cache: "pip"
python-version: "3.11"
cache-dependency-path: |
requirements.txt
docs/requirements.txt
- name: Install dependencies
run: python -m pip install -r requirements.txt -r docs/requirements.txt
run: |
apt-get update && apt-get -y install pandoc
python -m pip install -r docs/requirements.txt
- name: Build docs and analyze output
run: |
Expand Down

0 comments on commit 433b146

Please sign in to comment.