Skip to content

Commit

Permalink
Add Python requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
aravindnswamy committed Dec 8, 2023
1 parent 16256c7 commit 542e900
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/ci-cd-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,22 @@ jobs:
echo "✅ Quality gate passed"
- uses: actions/checkout@v3
- name: "Run Python script"
- name: "Setup Python"
uses: actions/setup-python@v4
with:
# python-version: '3.x'
cache: 'pip'
- run: pip install -r ./requirements.txt
- uses: py-actions/py-dependency-install@v4
- name: Install dependencies
uses: py-actions/py-dependency-install@v4
with:
path: "requirements.txt"
update-pip: "false"
update-setuptools: "false"
update-wheel: "false"
path: "requirements.txt"
# - run: pip install -r ./requirements.txt
# - uses: py-actions/py-dependency-install@v4
# with:
# path: "requirements.txt"
# update-pip: "false"
# update-setuptools: "false"
# update-wheel: "false"
- uses: jannekem/run-python-script-action@v1
with:
script: |
Expand Down

0 comments on commit 542e900

Please sign in to comment.