Skip to content

update for pypi

update for pypi #12

name: Build Package
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: poetry install --no-root
- name: Build package
run: poetry build
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/