Commit ddbb465 1 parent 0d02d05 commit ddbb465 Copy full SHA for ddbb465
File tree 1 file changed +22
-1
lines changed
1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 50
50
python -m pip install --upgrade pip
51
51
pip install -r requirements.txt
52
52
53
- test-default :
53
+ test-default-pr :
54
54
runs-on : ${{ matrix.os }}
55
55
strategy :
56
56
fail-fast : false
70
70
run : |
71
71
python -m pip install --upgrade pip
72
72
pip install -r requirements.txt
73
+
74
+ test-default-v5 :
75
+ runs-on : ${{ matrix.os }}
76
+ strategy :
77
+ fail-fast : false
78
+ matrix :
79
+ os : [ubuntu-latest]
80
+ python-version :
81
+ - ' 3.14.0a4'
82
+
83
+ steps :
84
+ - uses : actions/checkout@v4
85
+ - name : Set up Python ${{ matrix.python-version }}
86
+ uses : actions/setup-python@v5
87
+ # uses: priyagupta108/setup-python@test-pr-973
88
+ with :
89
+ python-version : ${{ matrix.python-version }}
90
+ - name : Install dependencies
91
+ run : |
92
+ python -m pip install --upgrade pip
93
+ pip install -r requirements.txt
73
94
You can’t perform that action at this time.
0 commit comments