Add first pass at PyPI Github action
This commit is contained in:
parent
732daf3738
commit
69ff3f8483
1 changed files with 15 additions and 0 deletions
15
.github/workflows/pypi_package.yml
vendored
Normal file
15
.github/workflows/pypi_package.yml
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue