diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 62d0f05..b2607ee 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -12,12 +12,9 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: '3.12' - name: Install dependencies run: | - python -m pip install --upgrade pip + python3 -m pip install --upgrade pip pip install -r src/requirements.txt - name: Lint and format with Ruff run: |