Skip to content

Commit

Permalink
Update release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
utf committed Aug 23, 2022
1 parent c027cd2 commit 821b0c9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,21 @@ jobs:
with:
python-version: 3.8

- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools setuptools_scm wheel
pip install numpy packaging
pip install -r requirements.txt
pip install -e .
pip install -e .[tests]
pip install setuptools setuptools_scm wheel
- name: Test
run: pytest
Expand Down

0 comments on commit 821b0c9

Please sign in to comment.