Skip to content

Commit

Permalink
fix (cd): add missing pandoc install in action code
Browse files Browse the repository at this point in the history
  • Loading branch information
mspronesti committed Apr 22, 2022
1 parent 90deb0d commit 3c2e1b0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
- uses: actions/setup-python@v2
- name: Install dependencies
run: |
sudo apt install pandoc
pip install -r requirements-dev.txt
- name: Sphinx build
run: |
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Qlearnkit python library

[![Python Versions](https://img.shields.io/badge/Python-3.7 | 3.8 | 3.9-blue.svg?style=flat&logo=python&logoColor=white)](https://www.python.org/)
[![Python Versions](https://img.shields.io/badge/Python-3.7 | 3.8 | 3.9-blue.svg?style=flat&logo=python&logoColor=white)](https://www.python.org/)
[![License](https://img.shields.io/github/license/mspronesti/qlearnkit)](https://opensource.org/licenses/Apache-2.0)
[![Build](https://github.com/mspronesti/qlearnkit/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/mspronesti/qlearnkit/blob/master/.github/workflows/build-and-test.yml)
[![Upload Python Package](https://github.com/mspronesti/qlearnkit/workflows/Upload%20Python%20Package/badge.svg)](https://pypi.org/project/qlearnkit/)
Expand Down Expand Up @@ -88,8 +88,15 @@ The documentation is available [here](https://mspronesti.github.io/qlearnkit).

Alternatively, you can build and browse it locally as follows:

first make sure to have `pandoc` installed

```bash
sudo apt install pandoc
```

then run

```bash
make doc
```

Expand Down

0 comments on commit 3c2e1b0

Please sign in to comment.