Skip to content

Commit de21255

Browse files
committed
Install requirements in one pass and cache pip
1 parent a1da7fe commit de21255

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232
uses: actions/setup-python@v5
3333
with:
3434
python-version: ${{ matrix.python-version }}
35+
cache: pip
3536

3637
- name: Install dependencies
3738
run: |
3839
python -m pip install --upgrade pip
39-
pip install -r requirements/requirements-tests.txt
40-
pip install -r requirements/requirements-core.txt
40+
pip install -r requirements/requirements-core.txt -r requirements/requirements-tests.txt
4141
pip install .
4242
4343
- name: Run tests

0 commit comments

Comments
 (0)