File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 26
26
fail-fast : false
27
27
matrix :
28
28
os : [ ubuntu-latest, windows-latest, macos-latest ]
29
+ release : [ stable, nightly ]
29
30
runs-on : ${{ matrix.os }}
30
31
steps :
31
32
- name : Checkout GitHub repo
47
48
uses : actions/setup-python@v5
48
49
with :
49
50
python-version : 3.8
50
- - name : Install dependencies
51
+ - name : Install dependencies nightly
52
+ if : matrix.release == 'nightly'
53
+ working-directory : ./examples/python
54
+ run : |
55
+ python -m pip install --upgrade pip
56
+ pip install -r requirements.txt
57
+ pip install -i https://test.pypi.org/simple/ --force-reinstall -v selenium
58
+ - name : Install dependencies stable
59
+ if : matrix.release == 'stable'
51
60
working-directory : ./examples/python
52
61
run : |
53
62
python -m pip install --upgrade pip
You can’t perform that action at this time.
0 commit comments