Skip to content

Commit

Permalink
install requirements in e2e.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sashankaryal committed Jun 8, 2023
1 parent d06359e commit 4eec477
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,19 @@ jobs:

- name: Set up Python 3.8
uses: actions/setup-python@v2
id: pip-cache
with:
python-version: 3.8
cache: "pip"
cache-dependency-path: |
requirements/common.txt
requirements/github.txt
requirements/test.txt
- name: Install requirements
if: steps.pip-cache.outputs.cache-hit != true
run: |
pip install -r requirements/github.txt
- name: Install dependencies
run: |
Expand Down

0 comments on commit 4eec477

Please sign in to comment.