Skip to content

Commit 69b0dde

Browse files
committed
Nightly for Python
1 parent d836aea commit 69b0dde

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/python-examples.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
os: [ ubuntu-latest, windows-latest, macos-latest ]
29+
release: [ stable, nightly ]
2930
runs-on: ${{ matrix.os }}
3031
steps:
3132
- name: Checkout GitHub repo
@@ -47,7 +48,15 @@ jobs:
4748
uses: actions/setup-python@v5
4849
with:
4950
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'
5160
working-directory: ./examples/python
5261
run: |
5362
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)