Skip to content

Commit

Permalink
Fix poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
milesha committed Oct 29, 2024
1 parent a958122 commit 08f2d20
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/generate-intelligence-service-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,21 @@ jobs:
distribution: 'temurin'
java-version: '21'

- name: Install and configure Poetry
run: pipx install poetry
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
virtualenvs-path: .venv
installer-parallel: true

- name: Install Python dependencies
working-directory: server/intelligence-service
run: poetry install
run: poetry install --no-interaction --no-root

- name: Install project
working-directory: server/intelligence-service
run: poetry install --no-interaction

- name: Generate API client for the intelligence service
run: npm run generate:api:intelligence-service
Expand Down

0 comments on commit 08f2d20

Please sign in to comment.