Skip to content

Commit

Permalink
install pandoc to build docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ManonMarchand committed Nov 6, 2023
1 parent 8a3c290 commit e17bbb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/deploy_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
maturin develop --release
# - Install dependencies needed to build docs
pip install -r requirements-doc.txt
sudo apt-get install pandoc
# - Build the doc: once done, it is in docs/_build/html/
cd ./docs
make doctest
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# We are now in CentOS 7 64 bits
steps:
- name: "Checkout the full project"
uses: actions/checkout@v4
uses: actions/checkout@v3
# We need to install rust in the docker image (else, cargo is already available in github action)
- name: "Install Rust"
run: |
Expand All @@ -44,6 +44,7 @@ jobs:
maturin build --release --compatibility manylinux2014
maturin develop --release
pip install -r requirements-dev.txt
sudo apt-get install pandoc
python -m pytest python/cdshealpix/tests/test_nested_healpix.py
python -m pytest python/cdshealpix/tests/test_ring_healpix.py
deactivate
Expand Down

0 comments on commit e17bbb5

Please sign in to comment.