build: more uv #200
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
name: Build | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python_version: ["3.11", "3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- name: Install uv | |
uses: yezz123/setup-uv@v4 | |
- name: Setup Graphviz | |
uses: ts-graphviz/setup-graphviz@v2 | |
- name: Install dependencies | |
run: | | |
uv sync --all-extras | |
- name: Lint and typecheck | |
run: | | |
uv run ruff check . | |
uv run ruff format --check . | |
uv run mypy mkdocs_mknodes/ | |
- name: Test | |
run: | | |
uv run pytest --cov-report=xml | |
- uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: false | |
verbose: true | |
release: | |
runs-on: ubuntu-latest | |
needs: test | |
if: startsWith(github.ref, 'refs/tags/') | |
permissions: | |
# IMPORTANT: this permission is mandatory for trusted publishing | |
id-token: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install uv | |
uses: yezz123/setup-uv@v4 | |
- name: Build | |
run: | | |
uv build | |
- name: Publish on PyPI | |
env: | |
UV_PUBLISH_TOKEN: ${{ secrets.UV_PUBLISH_TOKEN }} | |
run: | | |
uv publish | |
- name: Create release | |
uses: ncipollo/release-action@v1 | |
with: | |
draft: true | |
body: ${{ github.event.head_commit.message }} | |
artifacts: dist/*.whl,dist/*.tar.gz | |
token: ${{ secrets.GITHUB_TOKEN }} |