Skip to content

Migrate to uv and dependency groups (#1024) #2073

Migrate to uv and dependency groups (#1024)

Migrate to uv and dependency groups (#1024) #2073

Workflow file for this run

name: build
on:
push:
branches: ["dev", "*.x-line"]
tags: ["*"]
pull_request:
# Run builds nightly to catch incompatibilities with new marshmallow releases
schedule:
- cron: "0 0 * * *"
jobs:
tests:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- { name: "3.10-ma3", python: "3.10", tox: py310-marshmallow3 }
- { name: "3.14-ma3", python: "3.14", tox: py314-marshmallow3 }
- { name: "3.10-ma4", python: "3.10", tox: py310-marshmallow4 }
- { name: "3.14-ma4", python: "3.14", tox: py314-marshmallow4 }
- { name: "lowest", python: "3.10", tox: py310-lowest }
- { name: "3.14-madev", python: "3.14", tox: py314-marshmallowdev }
steps:
- uses: actions/checkout@v6.0.2
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python }}
enable-cache: true
- run: uv run tox -e${{ matrix.tox }}
build:
name: Build package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
- uses: astral-sh/setup-uv@v7
with:
python-version: "3.14"
enable-cache: true
- run: uv build
- run: uvx twine check --strict dist/*
- name: Store the distribution packages
uses: actions/upload-artifact@v7
with:
name: python-package-distributions
path: dist/
# this duplicates pre-commit.ci, so only run it on tags
# it guarantees that linting is passing prior to a release
lint-pre-release:
if: startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
- uses: astral-sh/setup-uv@v7
with:
python-version: "3.14"
enable-cache: true
- run: uv run tox -e lint
publish-to-pypi:
name: PyPI release
if: startsWith(github.ref, 'refs/tags/')
needs: [build, tests, lint-pre-release]
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/apispec
permissions:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v8
with:
name: python-package-distributions
path: dist/
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1