Skip to content

Commit

Permalink
hopefully this solves pandoc error
Browse files Browse the repository at this point in the history
  • Loading branch information
niklexical authored Oct 26, 2023
1 parent 93d4857 commit ff183ee
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ permissions:
contents: write

jobs:
convert_via_pandoc:
runs-on: ubuntu-latest
steps:
- uses: docker://pandoc/core:2.9
with:
args: "--help" # gets appended to pandoc command
docs:
runs-on: ubuntu-latest
steps:
Expand All @@ -15,8 +21,7 @@ jobs:
python-version: '3.9'
- name: Install dependencies
run: |
pip install sparsesurv sphinx sphinx_rtd_theme myst_parser sphinx-autodoc-typehints nbsphinx better_apidoc;
conda install pandoc
pip install sparsesurv sphinx sphinx_rtd_theme myst_parser sphinx-autodoc-typehints nbsphinx better_apidoc
- name: Sphinx build
run: |
cd docs; sphinx-build . _build
Expand Down

0 comments on commit ff183ee

Please sign in to comment.