diff --git a/.github/workflows/ci-cd-pipeline.yaml b/.github/workflows/ci-cd-pipeline.yaml index ac2c07b..c3eaf14 100644 --- a/.github/workflows/ci-cd-pipeline.yaml +++ b/.github/workflows/ci-cd-pipeline.yaml @@ -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: |