Skip to content

Commit

Permalink
fix venv creation order in develop test
Browse files Browse the repository at this point in the history
  • Loading branch information
bfineran authored Oct 18, 2023
1 parent 2b452ac commit eb05174
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/local-install-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ jobs:
local-develop-test:
runs-on: ubuntu-20.04
steps:
- name: "⚙️ Create and activate venv"
run: |
python3.8 -m venv venv-dev
source venv-dev/bin/activate
- uses: actions/checkout@v2
with:
repository: "neuralmagic/sparsezoo"
Expand All @@ -42,9 +46,7 @@ jobs:
run: pip install sparsezoo/
- uses: actions/checkout@v2
- name: "⚙️ Install local develop deepsparse"
run: |
python3.8 -m venv venv-dev
source venv-dev/bin/activate
run:
pip install -e .
- name: "deepsparse.benchmark"
run: |
Expand Down

0 comments on commit eb05174

Please sign in to comment.