Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install --upgrade pip poetry
- run: poetry install
- run: poetry run make check-tests
- run: pip install --upgrade pip uv
- run: uv sync
- run: uv run make check-tests
check-dev:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- run: pip install --upgrade pip poetry
- run: poetry install
- run: poetry run make check-lint
- run: poetry run make check-format
- run: poetry build
- run: pip install --upgrade pip uv
- run: uv sync
- run: uv run make check-lint
- run: uv run make check-format
- run: uv build
release:
if: startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
Expand All @@ -35,8 +35,8 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- run: pip install --upgrade pip poetry
- run: poetry build
- run: pip install --upgrade pip uv
- run: uv build
- uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
Expand Down
Loading