Skip to content

add build test

add build test #3

Workflow file for this run

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/[email protected]
- name: Install dependencies
run: |
python -m pip install --upgrade pip
poetry install
- name: Build package
run: poetry build