Skip to content

👷 use new version to build python package in gith… #15

👷 use new version to build python package in gith…

👷 use new version to build python package in gith… #15

Workflow file for this run

name: ci-build
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install pypa/build
run: >-
python -m pip install build --user
- name: Build a binary wheel and a source tarball
run: python -m build