workflow action.

This commit is contained in:
Kelvin Sherlock 2024-01-04 13:38:02 -05:00
parent 8b39e26dc7
commit 6a8455af50
1 changed files with 21 additions and 0 deletions

21
.github/workflows/setup.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: setup
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: pip
run: pip install setuptools
- name: build
run: python setup.py build
- name: install
run: python setup.py install