Skip to content

uv

uv #2602

Workflow file for this run

name: tests
on:
push:
branches:
- master
- 'v*.x'
tags:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.13']
steps:
- uses: actions/checkout@v4
- name: Install uv
# run: pip install "uv==0.3.3"
# Install a specific uv version using the installer
run: curl -LsSf https://astral.sh/uv/0.3.3/install.sh | sh
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: uv pip install --editable '.[docs,test,coverage,lint]'
- name: Lint with ruff check
run: uv run ruff check .
- name: Format with ruff
run: uv run ruff format . --check
- name: Lint with mypy
run: uv run mypy .
- name: Print python versions
run: |
python -V
uv run python -V
- name: Test with pytest
run: uv run py.test --cov=./ --cov-append --cov-report=xml
env:
COV_CORE_SOURCE: .
COV_CORE_CONFIG: .coveragerc
COV_CORE_DATAFILE: .coverage.eager
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
release:
runs-on: ubuntu-latest
needs: build
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
strategy:
matrix:
python-version: ['3.13']
steps:
- uses: actions/checkout@v4
- name: Install uv
# run: pip install "uv==0.3.3"
# Install a specific uv version using the installer
run: curl -LsSf https://astral.sh/uv/0.3.3/install.sh | sh
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Build package
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
run: uv build
- name: Publish package
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip_existing: true