Skip to content

Commit 1b58d29

Browse files
committed
Simplied GitHub actions
1 parent 56f7011 commit 1b58d29

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 8 deletions
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.2dev]
12+
rf-version: [3.1.2, 3.2rc1]
1313

1414
steps:
1515
- uses: actions/checkout@v2
@@ -21,14 +21,9 @@ jobs:
2121
run: |
2222
python -m pip install --upgrade pip
2323
pip install -r requirements-dev.txt
24-
- name: Install RF from master
24+
- name: Install RF ${{ matrix.rf-version }}
2525
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: |
30-
pip install robotframework==${{ matrix.rf-version }}
31-
if: matrix.rf-version == '3.1.2'
26+
pip install -U --pre robotframework==${{ matrix.rf-version }}
3227
- name: Run flake8
3328
run: |
3429
flake8 --max-line-length=110 src/

0 commit comments

Comments
 (0)