Skip to content

update github actions #26

update github actions

update github actions #26

Workflow file for this run

name: Build python distribution
on:
pull_request:
workflow_call:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools_scm[toml]>=3.4 setuptools>=42 wheel twine>=3.3.0
- name: Build
run: |
python setup.py sdist bdist_wheel