Skip to content

Commit a548c8a

Browse files
committed
Fix commit
1 parent f3af164 commit a548c8a

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/actions.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@ jobs:
99
uses: actions/setup-python@v5
1010
with:
1111
python-version: 3.9
12+
- name: Install uv
13+
run: |
14+
curl -LsSf https://astral.sh/uv/install.sh | sh
1215
- name: Install dependencies
1316
run: |
1417
pip install --upgrade pip
15-
pip install '.[dev]' --index-url https://gitlab.mpcdf.mpg.de/api/v4/projects/2187/packages/pypi/simple
16-
pip install coverage coveralls
18+
uv pip install '.[dev]'
19+
uv pip install coverage coveralls
1720
- name: Test with pytest
1821
run: |
1922
python -m coverage run -m pytest -sv
@@ -31,14 +34,17 @@ jobs:
3134
uses: actions/setup-python@v5
3235
with:
3336
python-version: 3.9
37+
- name: Install uv
38+
run: |
39+
curl -LsSf https://astral.sh/uv/install.sh | sh
3440
- name: Build the package
3541
run: |
3642
pip install --upgrade pip
37-
pip install build
43+
uv pip install build
3844
python -m build --sdist
3945
- name: Install the package
4046
run: |
41-
pip install dist/*.tar.gz --index-url https://gitlab.mpcdf.mpg.de/api/v4/projects/2187/packages/pypi/simple
47+
uv pip install dist/*.tar.gz
4248
ruff-linting:
4349
runs-on: ubuntu-latest
4450
steps:

0 commit comments

Comments
 (0)