Skip to content

Commit

Permalink
ci: fix venv installation
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrezina committed Oct 14, 2024
1 parent 19c1f19 commit dbbfd52
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update -y
sudo apt-get install graphviz plantuml
pip3 install virtualenv
virtualenv .venv
sudo apt-get install graphviz plantuml python3-venv
python3 -m venv .venv
source .venv/bin/activate
pip3 install -r ./requirements.txt
- run: source .venv/bin/activate && make html SPHINXOPTS="-W --keep-going -n"

0 comments on commit dbbfd52

Please sign in to comment.