Nidhal Baccouri
commited on
Commit
·
137998c
1
Parent(s):
5400b9c
added debug logs for python
Browse files
.github/workflows/production-tests.yml
CHANGED
|
@@ -19,8 +19,11 @@ jobs:
|
|
| 19 |
with:
|
| 20 |
python-version: ${{ matrix.python-version }}
|
| 21 |
|
|
|
|
| 22 |
- name: Install poetry
|
| 23 |
-
run:
|
|
|
|
|
|
|
| 24 |
|
| 25 |
- name: Install dependencies
|
| 26 |
run: |
|
|
|
|
| 19 |
with:
|
| 20 |
python-version: ${{ matrix.python-version }}
|
| 21 |
|
| 22 |
+
|
| 23 |
- name: Install poetry
|
| 24 |
+
run: |
|
| 25 |
+
which python
|
| 26 |
+
curl -sSL https://install.python-poetry.org | python${{ matrix.python-version }} -
|
| 27 |
|
| 28 |
- name: Install dependencies
|
| 29 |
run: |
|
.github/workflows/release.yml
CHANGED
|
@@ -27,7 +27,9 @@ jobs:
|
|
| 27 |
- uses: actions/checkout@v2
|
| 28 |
|
| 29 |
- name: Install poetry
|
| 30 |
-
run:
|
|
|
|
|
|
|
| 31 |
|
| 32 |
- name: View poetry version
|
| 33 |
run: poetry --version
|
|
|
|
| 27 |
- uses: actions/checkout@v2
|
| 28 |
|
| 29 |
- name: Install poetry
|
| 30 |
+
run: |
|
| 31 |
+
which python
|
| 32 |
+
curl -sSL https://install.python-poetry.org | python3 -
|
| 33 |
|
| 34 |
- name: View poetry version
|
| 35 |
run: poetry --version
|
.github/workflows/test-release.yml
CHANGED
|
@@ -19,7 +19,9 @@ jobs:
|
|
| 19 |
- uses: actions/checkout@v2
|
| 20 |
|
| 21 |
- name: Install poetry
|
| 22 |
-
run:
|
|
|
|
|
|
|
| 23 |
|
| 24 |
- name: View poetry version
|
| 25 |
run: poetry --version
|
|
|
|
| 19 |
- uses: actions/checkout@v2
|
| 20 |
|
| 21 |
- name: Install poetry
|
| 22 |
+
run: |
|
| 23 |
+
which python
|
| 24 |
+
curl -sSL https://install.python-poetry.org | python3 -
|
| 25 |
|
| 26 |
- name: View poetry version
|
| 27 |
run: poetry --version
|
.github/workflows/test.yml
CHANGED
|
@@ -17,7 +17,9 @@ jobs:
|
|
| 17 |
python-version: ${{ matrix.python-version }}
|
| 18 |
|
| 19 |
- name: Install poetry
|
| 20 |
-
run:
|
|
|
|
|
|
|
| 21 |
|
| 22 |
- name: Install dependencies
|
| 23 |
run: |
|
|
|
|
| 17 |
python-version: ${{ matrix.python-version }}
|
| 18 |
|
| 19 |
- name: Install poetry
|
| 20 |
+
run: |
|
| 21 |
+
which python
|
| 22 |
+
curl -sSL https://install.python-poetry.org | python3 -
|
| 23 |
|
| 24 |
- name: Install dependencies
|
| 25 |
run: |
|