Skip to content

Commit

Permalink
Merge pull request #105 from RandyMcMillan/1653192377/5157f3f/923bd53
Browse files Browse the repository at this point in the history
.github/workflows/plebnet-playground.yml: use syphar/restore-virtualenv@v1
  • Loading branch information
rsafier committed May 22, 2022
2 parents 923bd53 + 3c2ba4c commit 85177e0
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/plebnet-playground.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,16 @@ jobs:
- uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: make init venv install.sh uninstall.sh
uses: actions/checkout@v2
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: syphar/restore-virtualenv@v1
id: cache-virtualenv
- uses: syphar/restore-pip-download-cache@v1
if: steps.cache-virtualenv.outputs.cache-hit != 'true'

- run: pip install -r requirements.txt
if: steps.cache-virtualenv.outputs.cache-hit != 'true'

- name: make venv && install.sh make help report
run: |
make init initialize
Expand Down

0 comments on commit 85177e0

Please sign in to comment.