We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e66bff commit 150bdadCopy full SHA for 150bdad
1 file changed
.github/workflows/continuous-integration.yml
@@ -40,11 +40,17 @@ jobs:
40
- name: Set AGENT_TOOLSDIRECTORY
41
run: echo "AGENT_TOOLSDIRECTORY=${{ runner.temp }}/tools-${{ matrix.container }}" >> $GITHUB_ENV
42
43
- - name: Setup python
44
- if: ${{ contains(matrix.container, 'ubuntu') }}
45
- uses: actions/setup-python@v5
46
- with:
47
- python-version: '3.11'
+ - name: Locate Python
+ run: |
+ echo $(which python3)
+
+ - name: List aliases
48
49
+ ln -s /usr/bin/python3 /usr/bin/python
50
51
+ - name: Run Python
52
53
+ echo $(python --version)
54
55
- name: Prepare File Tree
56
run: |
0 commit comments