Skip to content

Commit

Permalink
added debug logs for python
Browse files Browse the repository at this point in the history
  • Loading branch information
nidhaloff committed Jan 7, 2024
1 parent 5400b9c commit 137998c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/production-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}


- name: Install poetry
run: curl -sSL https://install.python-poetry.org | python3 -
run: |
which python
curl -sSL https://install.python-poetry.org | python${{ matrix.python-version }} -
- name: Install dependencies
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
- uses: actions/checkout@v2

- name: Install poetry
run: curl -sSL https://install.python-poetry.org | python3 -
run: |
which python
curl -sSL https://install.python-poetry.org | python3 -
- name: View poetry version
run: poetry --version
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
- uses: actions/checkout@v2

- name: Install poetry
run: curl -sSL https://install.python-poetry.org | python3 -
run: |
which python
curl -sSL https://install.python-poetry.org | python3 -
- name: View poetry version
run: poetry --version
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install poetry
run: curl -sSL https://install.python-poetry.org | python3 -
run: |
which python
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
Expand Down

0 comments on commit 137998c

Please sign in to comment.