We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be44564 commit 5954b5aCopy full SHA for 5954b5a
.github/workflows/CI.yml
@@ -9,7 +9,7 @@ jobs:
9
strategy:
10
matrix:
11
python-version: [2.7, 3.6, 3.7, 3.8]
12
- rf-version: [3.1.2, 3.2b2]
+ rf-version: [3.1.2, 3.2dev]
13
14
steps:
15
- uses: actions/checkout@v2
@@ -21,7 +21,14 @@ jobs:
21
run: |
22
python -m pip install --upgrade pip
23
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
30
pip install robotframework==${{ matrix.rf-version }}
31
+ if: matrix.rf-version == '3.1.2'
32
- name: Run flake8
33
34
flake8 --max-line-length=110 src/
0 commit comments