Skip to content

Added GH action for building #8

Added GH action for building

Added GH action for building #8

Workflow file for this run

name: Build
on:
push:
branches: ["master"]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python3
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build Package
run: |
python -m build