Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Build-Project

Build-Project #155

Workflow file for this run

name: Build-Project
run-name: Build-Project
on:
pull_request:
branches: [ master, develop, main ]
types: [ opened ]
jobs:
build-packages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
# using the latest minor release of python here.
# ref: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
python-version: '3.x'
- name: Install Package Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade build
python -m pip install --upgrade twine
- name: Build Package
run: python -m build