Skip to content

Commit

Permalink
Run script
Browse files Browse the repository at this point in the history
  • Loading branch information
aherbst-broad committed Oct 10, 2023
1 parent d4411c1 commit a7a0289
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/billing-project-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,19 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: '3.11'
#----------------------------------------------
# ----- install & configure poetry -----
#----------------------------------------------
- name: Install Poetry
uses: snok/install-poetry@v1.2
uses: snok/install-poetry@v1
with:
version: 1.6.1
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
Expand All @@ -36,8 +42,11 @@ jobs:
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
#----------------------------------------------
# install your root project, if required
#----------------------------------------------
- name: Install project
run: poetry install --no-interaction
run: poetry install --no-interactionZ
- name: Run script
run: |
source .venv/bin/activate
Expand Down

0 comments on commit a7a0289

Please sign in to comment.