This repository has been archived by the owner on May 30, 2024. It is now read-only.
Build-Project #162
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build-Project | |
run-name: Build-Project | |
on: | |
# Any push with exception to the below listed | |
# as they will be built in pypi-upload task. | |
push: | |
branches-ignore: | |
- master | |
- main | |
paths-ignore: | |
- README.md | |
- .old_cicd/* | |
- .github/* | |
- .github/workflows/* | |
- LICENSE | |
- .gitignore | |
- .dockerignore | |
- .githooks | |
tags-ignore: | |
- 'v[0-9]+.[0-9]+.*' | |
# We still test to ensure the build is successful | |
# for a 'potential PR' when opened. If additions to PR | |
# are pushed, we catch in the push section. | |
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 |