Skip to content

Check Build

Check Build #871

Workflow file for this run

name: Check Build
on:
push:
branches:
- main
- "v[0-9]+.[0-9]+.x"
pull_request:
branches:
- main
- "v[0-9]+.[0-9]+.x"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
package:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
filter: blob:none
fetch-depth: 0
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
- name: Build package
run: uv build
- name: Check package
run: uvx twine check --strict dist/*.whl