Skip to content

Commit

Permalink
use uv
Browse files Browse the repository at this point in the history
  • Loading branch information
strickvl committed Apr 5, 2024
1 parent 30398e6 commit 0417b14
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/starter_template_test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,19 @@ runs:
- name: Install wheel
shell: bash
run: |
pip install wheel
pip install wheel uv
- name: Install ZenML
if: ${{ inputs.ref-zenml != '' }}
shell: bash
run: |
pip install "git+https://github.com/zenml-io/zenml.git@${{ inputs.ref-zenml }}" "zenml[server]@git+https://github.com/zenml-io/zenml.git@${{ inputs.ref-zenml }}"
uv pip install --system "git+https://github.com/zenml-io/zenml.git@${{ inputs.ref-zenml }}" "zenml[server]@git+https://github.com/zenml-io/zenml.git@${{ inputs.ref-zenml }}"
- name: Install ZenML
if: ${{ inputs.ref-zenml == '' }}
shell: bash
run: |
pip install zenml "zenml[server]"
uv pip install --system zenml "zenml[server]"
- name: Concatenate requirements
shell: bash
Expand All @@ -75,7 +75,7 @@ runs:
- name: Install requirements
shell: bash
run: |
pip install -r ./local_checkout/all-requirements.txt
uv pip install --system -r ./local_checkout/all-requirements.txt
- name: Run pytests
shell: bash
Expand Down

0 comments on commit 0417b14

Please sign in to comment.