Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Yiannis128 committed Nov 4, 2024
1 parent c2e0b45 commit 9bd0fe7
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,20 +80,15 @@ jobs:
path: .

- name: Install pipenv
run: python -m pip install --upgrade pipenv wheel -r requirements.txt

- name: Debug
run: ls
if: steps.cache-pipenv.outputs.cache-hit != 'true'
run: python -m pip install --deploy --dev --upgrade pipenv wheel -r requirements.txt

- id: cache-pipenv
- name: Cache Pipenv
id: cache-pipenv
uses: actions/cache@v1.2.1
with:
path: ~/.local/share/virtualenvs
key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }}

- name: Install dependencies
if: steps.cache-pipenv.outputs.cache-hit != 'true'
run: pipenv install --deploy --dev

- name: Run test suite
run: pipenv run pytest -v

0 comments on commit 9bd0fe7

Please sign in to comment.