Skip to content

ci: Add Python 3.13 and 3.14 to test matrix. #48

ci: Add Python 3.13 and 3.14 to test matrix.

ci: Add Python 3.13 and 3.14 to test matrix. #48

Workflow file for this run

name: Publish Python Package
on:
push:
branches:
- master
jobs:
publish-service-client-package:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Build
run: uv build
- name: Publish Package
run: uv publish --token ${{ secrets.PYPI_TOKEN }}