File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 18
18
path : ~/.cache/uv
19
19
key : publish-${{ hashFiles('pyproject.toml') }}
20
20
- uses : extractions/setup-just@v2
21
- - run : curl -LsSf https://astral.sh/uv/0.2.11/ install.sh | sh
21
+ - run : curl -LsSf https://astral.sh/uv/install.sh | sh
22
22
- run : just publish
23
23
env :
24
24
PYPI_TOKEN : ${{ secrets.PYPI_TOKEN }}
Original file line number Diff line number Diff line change 26
26
with :
27
27
path : ~/.cache/uv
28
28
key : check-types-${{ hashFiles('pyproject.toml') }}
29
- - run : curl -LsSf https://astral.sh/uv/0.2.11/ install.sh | sh
29
+ - run : curl -LsSf https://astral.sh/uv/install.sh | sh
30
30
- uses : extractions/setup-just@v2
31
31
- run : just install check-types
32
32
41
41
with :
42
42
path : ~/.cache/uv
43
43
key : lint-${{ hashFiles('pyproject.toml') }}
44
- - run : curl -LsSf https://astral.sh/uv/0.2.11/ install.sh | sh
44
+ - run : curl -LsSf https://astral.sh/uv/install.sh | sh
45
45
- uses : extractions/setup-just@v2
46
46
- run : just install lint
47
47
62
62
with :
63
63
path : ~/.cache/uv
64
64
key : ${{ github.job }}-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}
65
- - run : curl -LsSf https://astral.sh/uv/0.2.11/ install.sh | sh
65
+ - run : curl -LsSf https://astral.sh/uv/install.sh | sh
66
66
- uses : extractions/setup-just@v2
67
67
- run : just install test -vv
68
68
Original file line number Diff line number Diff line change 1
1
ARG PYTHON_VERSION
2
- FROM ghcr.io/astral-sh/uv:0.2.11 as uv
2
+ FROM ghcr.io/astral-sh/uv:latest as uv
3
3
FROM python:${PYTHON_VERSION}-slim-bullseye
4
4
5
5
WORKDIR /app
Original file line number Diff line number Diff line change 5
5
uv -q sync
6
6
7
7
test * args :
8
- uv -q run pytest -- {{ args}}
8
+ uv -q run pytest {{ args}}
9
9
10
10
lint :
11
11
uv -q run ruff check .
@@ -30,6 +30,6 @@ test-integration *args:
30
30
31
31
publish :
32
32
rm -rf dist/ *
33
- uv tool run --from build python -- - m build --installer uv
33
+ uv tool run --from build python -m build --installer uv
34
34
uv tool run twine check dist/ *
35
35
uv tool run twine upload dist/ * --username __token__ --password $PYPI_TOKEN
You can’t perform that action at this time.
0 commit comments