chore(deps-dev): bump unocss from 0.62.4 to 0.64.1 #204
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.13 | |
- name: install | |
env: | |
UV_SYSTEM_PYTHON: true | |
run: | | |
pip install uv && uv pip install pdm | |
pdm export --pyproject --dev --editable-self | uv pip install -r - | |
- name: isort | |
run: isort . --check --diff | |
- name: black | |
run: black . --check --diff | |
- name: ruff | |
run: ruff check --output-format github | |
- name: pyright | |
run: npx pyright | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.13 | |
- name: build | |
run: | | |
pip install uv --disable-pip-version-check | |
uv build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
publish: | |
runs-on: ubuntu-latest | |
needs: [build, checks] | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
skip-existing: true | |
print-hash: true | |
verbose: true |