Skip to content

Commit 5954b5a

Browse files
committed
Install RF 3.2 from GitHub master branch
1 parent be44564 commit 5954b5a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
python-version: [2.7, 3.6, 3.7, 3.8]
12-
rf-version: [3.1.2, 3.2b2]
12+
rf-version: [3.1.2, 3.2dev]
1313

1414
steps:
1515
- uses: actions/checkout@v2
@@ -21,7 +21,14 @@ jobs:
2121
run: |
2222
python -m pip install --upgrade pip
2323
pip install -r requirements-dev.txt
24+
- name: Install RF from master
25+
run: |
26+
pip install https://github.com/robotframework/robotframework/archive/master.zip
27+
if: matrix.rf-version == '3.2dev'
28+
- name: Install RF 3.2.1
29+
run: |
2430
pip install robotframework==${{ matrix.rf-version }}
31+
if: matrix.rf-version == '3.1.2'
2532
- name: Run flake8
2633
run: |
2734
flake8 --max-line-length=110 src/

0 commit comments

Comments
 (0)