Commit 94e91d0 1 parent 129ad44 commit 94e91d0 Copy full SHA for 94e91d0
File tree 1 file changed +14
-23
lines changed
1 file changed +14
-23
lines changed Original file line number Diff line number Diff line change 1
- name : Reproduce Issue 4413
1
+ name : Test Non-Existent Path
2
2
3
- on : [push, pull_request ]
3
+ on : [push]
4
4
5
5
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
18
8
19
- reproduce-issue-ubuntu-24 :
20
- runs-on : ubuntu-24.04
21
9
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
24
14
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 '
29
19
30
-
20
+ - name : Verify PATH
21
+ run : echo $PATH
You can’t perform that action at this time.
0 commit comments