Skip to content

CI: Use uv package and project manager on GHA and RTD #956

CI: Use uv package and project manager on GHA and RTD

CI: Use uv package and project manager on GHA and RTD #956

Workflow file for this run

name: build
on:
pull_request: ~
push:
branches:
- main
# Allow job to be triggered manually.
workflow_dispatch:
# Cancel in-progress jobs when pushing to the same branch.
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
package:
name: Build package on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
cache-dependency-glob: |
setup.py
enable-cache: true
version: "latest"
- name: Build package
run: |
alias pip="uv pip"
make build