Skip to content

Commit

Permalink
rerender test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Oct 15, 2024
1 parent d75c352 commit 0920cee
Showing 1 changed file with 5 additions and 25 deletions.
30 changes: 5 additions & 25 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,13 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '${{matrix.python}}'
cache: pip
cache-dependency-path: |
requirements*.txt
*/pyproject.toml
- name: "🕶️ Set up uv"
run: |
pip install -U 'uv>=0.1.15'
- name: "📦 Set up Python dependencies"
id: install-deps
run: |
uv pip install --python $PYTHON -r requirements-test.txt -e lenskit
uv pip install --python $PYTHON -e "lenskit[test]"
shell: bash
env:
PYTHON: '${{steps.install-python.outputs.python-path}}'
Expand Down Expand Up @@ -143,17 +139,13 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
cache-dependency-path: |
requirements*.txt
*/pyproject.toml
- name: "🕶️ Set up uv"
run: |
pip install -U 'uv>=0.1.15'
- name: "📦 Set up Python dependencies"
id: install-deps
run: |
uv pip install --python $PYTHON -r requirements-test.txt -e lenskit -e lenskit-funksvd
uv pip install --python $PYTHON -e "lenskit[test]" -e "lenskit-funksvd"
shell: bash
env:
PYTHON: '${{steps.install-python.outputs.python-path}}'
Expand Down Expand Up @@ -196,17 +188,13 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
cache-dependency-path: |
requirements*.txt
*/pyproject.toml
- name: "🕶️ Set up uv"
run: |
pip install -U 'uv>=0.1.15'
- name: "📦 Set up Python dependencies"
id: install-deps
run: |
uv pip install --python $PYTHON -r requirements-test.txt -e lenskit --resolution=lowest-direct
uv pip install --python $PYTHON -e "lenskit[test]" --resolution=lowest-direct
shell: bash
env:
PYTHON: '${{steps.install-python.outputs.python-path}}'
Expand Down Expand Up @@ -287,17 +275,13 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
cache-dependency-path: |
requirements*.txt
*/pyproject.toml
- name: "🕶️ Set up uv"
run: |
pip install -U 'uv>=0.1.15'
- name: "📦 Set up Python dependencies"
id: install-deps
run: |
uv pip install --python $PYTHON -r requirements-test.txt -e lenskit -e lenskit-funksvd --resolution=lowest-direct
uv pip install --python $PYTHON -e "lenskit[test]" -e "lenskit-funksvd" --resolution=lowest-direct
shell: bash
env:
PYTHON: '${{steps.install-python.outputs.python-path}}'
Expand Down Expand Up @@ -378,17 +362,13 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
cache-dependency-path: |
requirements*.txt
*/pyproject.toml
- name: "🕶️ Set up uv"
run: |
pip install -U 'uv>=0.1.15'
- name: "📦 Set up Python dependencies"
id: install-deps
run: |
uv pip install --python $PYTHON -r requirements-test.txt -e lenskit -e lenskit-implicit --resolution=lowest-direct
uv pip install --python $PYTHON -e "lenskit[test]" -e "lenskit-implicit" --resolution=lowest-direct
shell: bash
env:
PYTHON: '${{steps.install-python.outputs.python-path}}'
Expand Down

0 comments on commit 0920cee

Please sign in to comment.