Skip to content

Commit

Permalink
Simplify python installs in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Aug 23, 2022
1 parent b0edab0 commit e4c7573
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-deployment.yaml
Expand Up @@ -21,7 +21,7 @@ jobs:

- id: pipenv-install
name: Install Python dependencies
run: pipenv install --dev --python `which python`
run: pipenv install --python `which python` --skip-lock flake8 flake8-docstrings flake8-bugbear

- id: run
name: Run
Expand All @@ -47,7 +47,7 @@ jobs:

- id: pipenv-install
name: Install Python dependencies
run: pipenv install --python `which python` --dev --skip-lock
run: pipenv install --python `which python` --skip-lock tldextract scikit-learn dill pandas pytest
shell: bash

- id: run
Expand All @@ -72,7 +72,7 @@ jobs:

- id: pipenv-install
name: Install Python dependencies
run: pipenv install --dev --python `which python`
run: pipenv install --python `which python` --skip-lock twine
shell: bash

- id: build
Expand Down

0 comments on commit e4c7573

Please sign in to comment.