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.
1 parent 083c69e commit 43cb5bcCopy full SHA for 43cb5bc
.github/workflows/tests.yml
@@ -24,11 +24,12 @@ jobs:
24
with:
25
python-version: ${{ matrix.python-version }}
26
cache: 'pip'
27
+ cache-dependency-path: 'requirements.txt' # <-- key the cache properly
28
- - name: Install test/deps
29
+ - name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip
- pip install pytest pyyaml
32
+ pip install -r requirements.txt
33
34
- name: Run unit tests
35
0 commit comments