Skip to content

Bump ufmt from 2.7.1 to 2.8.0 #54

Bump ufmt from 2.7.1 to 2.8.0

Bump ufmt from 2.7.1 to 2.8.0 #54

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- v*
pull_request:
permissions:
contents: read
env:
UV_MANAGED_PYTHON: 1
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [
"3.9",
"3.10",
"3.11",
"3.12",
"3.13",
"3.13t",
"3.14",
"3.14t",
]
os: [macOS-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- run: uv sync
- name: Test
run: make test
- name: Lint
run: make lint
compat:
env:
UV_RESOLUTION: lowest-direct
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v7
with:
python-version: "3.9"
- run: uv sync
- run: make test lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v7
with:
python-version: "3.14"
- run: uv sync
- run: uv build
- name: Upload
uses: actions/upload-artifact@v5
with:
name: sdist
path: dist
publish:
needs: [build, compat, test]
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v6
with:
name: sdist
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1