diff --git a/.github/actions/install_kedro_and_python_dependencies/action.yml b/.github/actions/install_kedro_and_python_dependencies/action.yml index b4ecdeb9b..293d1e07f 100644 --- a/.github/actions/install_kedro_and_python_dependencies/action.yml +++ b/.github/actions/install_kedro_and_python_dependencies/action.yml @@ -3,18 +3,17 @@ description: Installs Kedro from the main branch and other Python dependencies, runs: using: composite steps: - steps: - - name: Install `uv` - run: | - python -m pip install "uv==0.5.4" - shell: bash -- name: Install Python dependencies - run: |- - uv pip install --system git+https://github.com/kedro-org/kedro@main - uv pip install --system -r package/test_requirements.txt -r demo-project/src/docker_requirements.txt -U - shell: bash - - name: Echo package versions - run: |- - python -V - uv pip freeze - shell: bash \ No newline at end of file + - name: Install `uv` + run: | + python -m pip install "uv==0.5.4" + shell: bash + - name: Install Python dependencies + run: |- + uv pip install --system git+https://github.com/kedro-org/kedro@main + uv pip install --system -r package/test_requirements.txt -r demo-project/src/docker_requirements.txt -U + shell: bash + - name: Echo package versions + run: |- + python -V + pip freeze + shell: bash \ No newline at end of file