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 c027cd2 commit 821b0c9Copy full SHA for 821b0c9
.github/workflows/release.yml
@@ -16,14 +16,21 @@ jobs:
16
with:
17
python-version: 3.8
18
19
+ - uses: actions/cache@v3
20
+ with:
21
+ path: ~/.cache/pip
22
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
23
+ restore-keys: |
24
+ ${{ runner.os }}-pip-
25
+
26
- name: Install dependencies
27
run: |
28
python -m pip install --upgrade pip
- pip install setuptools setuptools_scm wheel
29
pip install numpy packaging
30
pip install -r requirements.txt
31
pip install -e .
32
pip install -e .[tests]
33
+ pip install setuptools setuptools_scm wheel
34
35
- name: Test
36
run: pytest
0 commit comments