We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e8ad23 commit 47e3cfbCopy full SHA for 47e3cfb
.github/workflows/3.13-test.yml
@@ -9,14 +9,21 @@ jobs:
9
strategy:
10
matrix:
11
python-version: ["3.12"]
12
- os: [ubuntu-24.04-arm, ubuntu-22.04-arm]
+ os: [ubuntu-24.04, macos-latest]
13
14
steps:
15
- uses: actions/checkout@v4
16
- name: Set up Python
17
uses: actions/setup-python@v5
18
+ id: setup-python
19
with:
20
python-version: ${{ matrix.python-version }}
- # cache: pip
21
- # architecture: ${{ matrix.arch }}
22
-
+
+ - name: Print Python Path
23
+ run: echo "${{ steps.setup-python.outputs.python-path }}"
24
25
+ - name: Fix path format
26
+ run: echo "${{ steps.setup-python.outputs.python-path }}" | sed 's/\\/\//g'
27
28
29
0 commit comments