Skip to content

feat: add auto-upload of binaries to release page and improve network… #10

feat: add auto-upload of binaries to release page and improve network…

feat: add auto-upload of binaries to release page and improve network… #10

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/*