-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Workaround limitation with pipenv action
Using solution suggested on: VaultVulp/action-pipenv#1
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |