Skip to content

Commit

Permalink
[MISC] Fix Github workflows not installing poetry packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Aedial committed May 18, 2023
1 parent 4ea2b9e commit c478bce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
pip install poetry
- name: Test
run: |
poetry install
poetry run nai-test-api
env:
NAI_USERNAME: ${{ secrets.NAI_USERNAME }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:

- run: pip install poetry
- name: Build HTML
run: poetry run nai-build-docs
run: |
poetry install
poetry run nai-build-docs
- name: Deploy on Github Pages
uses: peaceiris/actions-gh-pages@v3
Expand Down

0 comments on commit c478bce

Please sign in to comment.