Skip to content

Commit 150bdad

Browse files
committed
Locate Python3
1 parent 3e66bff commit 150bdad

1 file changed

Lines changed: 11 additions & 5 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,17 @@ jobs:
4040
- name: Set AGENT_TOOLSDIRECTORY
4141
run: echo "AGENT_TOOLSDIRECTORY=${{ runner.temp }}/tools-${{ matrix.container }}" >> $GITHUB_ENV
4242

43-
- name: Setup python
44-
if: ${{ contains(matrix.container, 'ubuntu') }}
45-
uses: actions/setup-python@v5
46-
with:
47-
python-version: '3.11'
43+
- name: Locate Python
44+
run: |
45+
echo $(which python3)
46+
47+
- name: List aliases
48+
run: |
49+
ln -s /usr/bin/python3 /usr/bin/python
50+
51+
- name: Run Python
52+
run: |
53+
echo $(python --version)
4854
4955
- name: Prepare File Tree
5056
run: |

0 commit comments

Comments
 (0)