Add first pass at PyPI Github action

This commit is contained in:
Michael Hansen 2022-04-07 14:36:25 -04:00
commit 69ff3f8483

15
.github/workflows/pypi_package.yml vendored Normal file
View file

@ -0,0 +1,15 @@
---
name: PyPI Package Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
- name: Make package
run: make dist