Skip to content

Added build action, and requirments.txt #1

Added build action, and requirments.txt

Added build action, and requirments.txt #1

Workflow file for this run

name: Python Build Package
on:
pull_request:
push:
workflow_dispatch:
jobs:
build:
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 dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build package
run: python -m build