We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d37cfae commit 4b9b7d6Copy full SHA for 4b9b7d6
1 file changed
.github/workflows/test-ubuntu-runner.yml
@@ -1,4 +1,4 @@
1
-name: Test Python Versions
+name: Test ubuntu arm runner
2
3
on:
4
push:
@@ -26,6 +26,18 @@ jobs:
26
# run: |
27
# mv "${{ runner.tool_cache }}" "${{ runner.tool_cache }}.old"
28
# mkdir -p "${{ runner.tool_cache }}"
29
+ - name: Show runner tool cache location
30
+ run: echo "Tool cache ${{ runner.tool_cache }}"
31
+
32
+ - name: List cached Python versions
33
+ run: ls -l ${{ runner.tool_cache }}/Python
34
35
+ - name: Show active python3 location
36
+ run: |
37
+ which python3
38
+ ls -l $(which python3)
39
+ - name: Check Python version
40
+ run: python3 --version
41
- name: Set up Python ${{ matrix.python-version }}
42
uses: actions/setup-python@v6
43
# uses: priya-kinthali/setup-python@test-1079
0 commit comments