Skip to content

Merge pull request #149 from acerbilab/dependabot/github_actions/acti… #23

Merge pull request #149 from acerbilab/dependabot/github_actions/acti…

Merge pull request #149 from acerbilab/dependabot/github_actions/acti… #23

Workflow file for this run

name: build
on:
push:
branches:
- main
workflow_call:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.9"
- name: Build sdist and wheel
run: |
python -m pip install -U build setuptools_scm
python -m build .
- uses: actions/upload-artifact@v4
with:
path: dist/*