Skip to content

ci: new versions for the ci #4

ci: new versions for the ci

ci: new versions for the ci #4

Workflow file for this run

name: Check Build
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
filter: blob:none
fetch-depth: 0
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install build tools
run: python -m pip install --upgrade pip build twine
- name: Build package
run: python -m build
- name: Check package
run: twine check --strict dist/*.whl