Skip to content

bump dependencies with poetry update #144

bump dependencies with poetry update

bump dependencies with poetry update #144

Workflow file for this run

name: Test Build of Python Package
on: push
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.x"
- name: Install Poetry
uses: abatilo/actions-poetry@v4
with:
poetry-version: "latest"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
poetry install
- name: Build package
run: poetry build