Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Alleria1809 committed Jun 29, 2024
1 parent b98fc11 commit ca0605c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,15 @@ jobs:
with:
python-version: '3.11'

- name: Install dependencies
- name: Install Poetry
run: |
pip install --upgrade pip
pip install -r ./docs/requirements.txt
pip freeze # Display installed packages for debugging
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies using Poetry
run: |
poetry config virtualenvs.create false
poetry install
- name: Build documentation
run: |
Expand Down

0 comments on commit ca0605c

Please sign in to comment.