From 6a8455af504c610466dd565cd1cb5ce23519a136 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Thu, 4 Jan 2024 13:38:02 -0500 Subject: [PATCH] workflow action. --- .github/workflows/setup.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/setup.yml diff --git a/.github/workflows/setup.yml b/.github/workflows/setup.yml new file mode 100644 index 0000000..bb6553f --- /dev/null +++ b/.github/workflows/setup.yml @@ -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