We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0f6c701 + 36190d2 commit 780f724Copy full SHA for 780f724
.github/workflows/test_pytest.yaml
@@ -29,14 +29,11 @@ jobs:
29
uses: actions/setup-python@main
30
with:
31
python-version: ${{ matrix.python-version }}
32
-
33
- - name: Cache Python dependencies
34
- uses: actions/cache@main
35
- with:
36
- path: ~/.cache/pip
37
- key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-tests.txt') }}
38
- restore-keys: |
39
- ${{ runner.os }}-pip-
+ cache: 'pip'
+ cache-dependency-path: |
+ requirements.txt
+ requirements-tests.txt
+ requirements-optional.txt
40
41
- name: Install rocketpy
42
run: pip install .
0 commit comments