From 309efa82f8e7c1534b60239bfbe31fa4c82b5ab4 Mon Sep 17 00:00:00 2001 From: Nicholas Long Date: Sun, 21 Apr 2024 08:09:24 -0600 Subject: [PATCH] add build test --- .github/workflows/build.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..0ec02ea --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: Test Build of Python Package + +on: push + +jobs: + deploy: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v3 + with: + python-version: '3.x' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + poetry install + - name: Build package + run: poetry build