File tree Expand file tree Collapse file tree 4 files changed +488
-552
lines changed
Expand file tree Collapse file tree 4 files changed +488
-552
lines changed Original file line number Diff line number Diff line change @@ -11,21 +11,21 @@ jobs:
1111 - uses : actions/setup-python@v5
1212 with :
1313 python-version : ${{ matrix.python-version }}
14- - run : pip install --upgrade pip poetry
15- - run : poetry install
16- - run : poetry run make check-tests
14+ - run : pip install --upgrade pip uv
15+ - run : uv sync
16+ - run : uv run make check-tests
1717 check-dev :
1818 runs-on : ubuntu-24.04
1919 steps :
2020 - uses : actions/checkout@v4
2121 - uses : actions/setup-python@v5
2222 with :
2323 python-version : ' 3.13'
24- - run : pip install --upgrade pip poetry
25- - run : poetry install
26- - run : poetry run make check-lint
27- - run : poetry run make check-format
28- - run : poetry build
24+ - run : pip install --upgrade pip uv
25+ - run : uv sync
26+ - run : uv run make check-lint
27+ - run : uv run make check-format
28+ - run : uv build
2929 release :
3030 if : startsWith(github.ref, 'refs/tags')
3131 runs-on : ubuntu-latest
3535 - uses : actions/setup-python@v5
3636 with :
3737 python-version : ' 3.13'
38- - run : pip install --upgrade pip poetry
39- - run : poetry build
38+ - run : pip install --upgrade pip uv
39+ - run : uv build
4040 - uses : pypa/gh-action-pypi-publish@master
4141 with :
4242 user : __token__
You can’t perform that action at this time.
0 commit comments