Skip to content

Commit

Permalink
graphviz
Browse files Browse the repository at this point in the history
  • Loading branch information
LegrandNico committed Oct 14, 2024
1 parent c7ba0c7 commit 2643d69
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,16 @@ jobs:
with:
python-version: '3.12'

- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.local/bin" >> $GITHUB_PATH
poetry self add "poetry-dynamic-versioning[plugin]"
# 3. Install dependencies and build the documentation
- name: Install dependencies and build docs
run: |
apt-get install graphviz
pip install poetry poetry-dynamic-versioning
sudo apt-get install graphviz
poetry install --with dev
poetry run sphinx-build -j 4 -T -b html docs/source docs/build/html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# Step 4: Install System Dependencies
- name: Install Graphviz
run: apt-get install -y graphviz
run: sudo apt-get install -y graphviz

# Step 5: Install Python Dependencies using Poetry
- name: Install dependencies
Expand Down

0 comments on commit 2643d69

Please sign in to comment.