Skip to content

fix: add entry_point launcher to resolve relative import errors in exe #13

fix: add entry_point launcher to resolve relative import errors in exe

fix: add entry_point launcher to resolve relative import errors in exe #13

Workflow file for this run

name: Test Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package
run: python -m build
- name: Check package description (Twine check)
run: twine check dist/*