From 741441f03b814881d2826c7cd0e3ce1964bb8e5c 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 | 23 +++++++++++++++++++++++ 1 file changed, 23 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..2caf646 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: Test Build of Python Package + +on: push + +jobs: + deploy: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.x' + - name: Install Poetry + uses: snok/install-poetry@v1.3.4 + - name: Install dependencies + run: | + python -m pip install --upgrade pip + poetry install + - name: Build package + run: poetry build