Skip to content

Readd cdm-client script config #20

Readd cdm-client script config

Readd cdm-client script config #20

name: Upload Python Package
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: |
make reqs-ci
- name: Lint code
run: |
make lint
- name: Check code format
run: |
make check-format
- name: Build and publish python package
run: |
make build
make publish
env:
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}