Skip to content

Commit 903a4c1

Browse files
author
Vianpyro
committed
Refactor GitHub Actions workflow to combine dependency installation and testing steps
1 parent 6054967 commit 903a4c1

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/pytest.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@ jobs:
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
cache: 'pip'
28-
run: pip install -r requirements.txt
29-
run: pip test
28+
29+
- name: Install dependencies
30+
run: |
31+
pip install -r requirements.txt
32+
pip test
3033
3134
- name: Test with pytest
3235
run: |

0 commit comments

Comments
 (0)