We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56f7011 commit 1b58d29Copy full SHA for 1b58d29
1 file changed
.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.2dev]
+ rf-version: [3.1.2, 3.2rc1]
13
14
steps:
15
- uses: actions/checkout@v2
@@ -21,14 +21,9 @@ jobs:
21
run: |
22
python -m pip install --upgrade pip
23
pip install -r requirements-dev.txt
24
- - name: Install RF from master
+ - name: Install RF ${{ matrix.rf-version }}
25
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: |
30
- pip install robotframework==${{ matrix.rf-version }}
31
- if: matrix.rf-version == '3.1.2'
+ pip install -U --pre robotframework==${{ matrix.rf-version }}
32
- name: Run flake8
33
34
flake8 --max-line-length=110 src/
0 commit comments