chore: examples fix #271
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.12", "3.13"] | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python_version }} | |
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: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install uv | |
uses: yezz123/setup-uv@v4 | |
- name: Build package | |
run: | | |
uv build | |
- name: Publish package on PyPI | |
env: | |
UV_PUBLISH_TOKEN: ${{ secrets.UV_PUBLISH_TOKEN }} | |
run: | | |
uv publish | |
# - name: Publish package to PyPI | |
# uses: pypa/gh-action-pypi-publish@release/v1 | |
- name: Publish package on GitHub | |
uses: ncipollo/release-action@v1 | |
with: | |
body: ${{ github.event.head_commit.message }} | |
artifacts: dist/*.whl,dist/*.tar.gz | |
token: ${{ secrets.GITHUB_TOKEN }} |