Skip to content

Commit 94e91d0

Browse files
Update python-app.yml
1 parent 129ad44 commit 94e91d0

File tree

1 file changed

+14
-23
lines changed

1 file changed

+14
-23
lines changed

.github/workflows/python-app.yml

+14-23
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,21 @@
1-
name: Reproduce Issue 4413
1+
name: Test Non-Existent Path
22

3-
on: [push, pull_request]
3+
on: [push]
44

55
jobs:
6-
reproduce-issue-ubuntu-latest:
7-
runs-on: ubuntu-latest
8-
steps:
9-
- name: Checkout repository
10-
uses: actions/checkout@v4
11-
12-
- name: Set up Python
13-
uses: actions/setup-python@v5
14-
with:
15-
python-version: '3.14.0-alpha.3'
16-
17-
6+
build:
7+
runs-on: self-hosted
188

19-
reproduce-issue-ubuntu-24:
20-
runs-on: ubuntu-24.04
219
steps:
22-
- name: Checkout repository
23-
uses: actions/checkout@v4
10+
- name: Add Non-Existent Path to PATH
11+
run: |
12+
echo "Adding non-existent path to PATH"
13+
echo "D:\Program Files\Perforce" >> $GITHUB_PATH
2414
25-
- name: Set up Python
26-
uses: actions/setup-python@v5
27-
with:
28-
python-version: '3.14-dev'
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: '3.10'
2919

30-
20+
- name: Verify PATH
21+
run: echo $PATH

0 commit comments

Comments
 (0)