Skip to content

Commit

Permalink
Workaround limitation with pipenv action
Browse files Browse the repository at this point in the history
Using solution suggested on:

VaultVulp/action-pipenv#1
  • Loading branch information
ricobl authored Apr 28, 2024
1 parent 39385bb commit 60f2a90
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
- name: Display Python version
run: python -c "import sys; print(sys.version)"

- name: Install dependecies
uses: VaultVulp/[email protected]
with:
command: install --dev
- name: Install pipenv
run: pip install --user pipenv

- name: Install all dependencies, including development ones
run: pipenv sync --dev

- name: Install Django
run: pip install -q Django~=${{ matrix.django-version }}

- name: Test
uses: VaultVulp/[email protected]
with:
command: run test
command: pipenv run test

0 comments on commit 60f2a90

Please sign in to comment.