File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 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 :
You can’t perform that action at this time.
0 commit comments