Commit 0907366 1 parent 5cefc2a commit 0907366 Copy full SHA for 0907366
File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 14
14
runs-on : ubuntu-latest
15
15
strategy :
16
16
matrix :
17
- python-version : [3.8, 3.11.1 ]
18
- rf-version : [5.0.1, 7.0.0 ]
17
+ python-version : [3.8, 3.12 ]
18
+ rf-version : [5.0.1, 7.0.1 ]
19
19
20
20
steps :
21
21
- uses : actions/checkout@v4
@@ -26,10 +26,11 @@ jobs:
26
26
- name : Install dependencies
27
27
run : |
28
28
python -m pip install --upgrade pip
29
- pip install -r requirements-dev.txt
29
+ pip install uv
30
+ uv pip install -r requirements-dev.txt --python ${{ matrix.python-version }} --system
30
31
- name : Install RF ${{ matrix.rf-version }}
31
32
run : |
32
- pip install -U --pre robotframework==${{ matrix.rf-version }}
33
+ uv pip install -U robotframework==${{ matrix.rf-version }} --python ${{ matrix.python-version }} --system
33
34
- name : Run ruff
34
35
run : |
35
36
ruff check ./src tasks.py
Original file line number Diff line number Diff line change
1
+ uv
1
2
pytest
2
3
pytest-cov
3
4
pytest-mockito
You can’t perform that action at this time.
0 commit comments