Skip to content

Commit 47e3cfb

Browse files
Update 3.13-test.yml
1 parent 9e8ad23 commit 47e3cfb

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/3.13-test.yml

+11-4
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,21 @@ jobs:
99
strategy:
1010
matrix:
1111
python-version: ["3.12"]
12-
os: [ubuntu-24.04-arm, ubuntu-22.04-arm]
12+
os: [ubuntu-24.04, macos-latest]
1313

1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: Set up Python
1717
uses: actions/setup-python@v5
18+
id: setup-python
1819
with:
1920
python-version: ${{ matrix.python-version }}
20-
# cache: pip
21-
# architecture: ${{ matrix.arch }}
22-
21+
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+
- name: Print Python Path
28+
run: echo "${{ steps.setup-python.outputs.python-path }}"
29+

0 commit comments

Comments
 (0)