Skip to content

Merge pull request #18 from gogo2464/cicd #7

Merge pull request #18 from gogo2464/cicd

Merge pull request #18 from gogo2464/cicd #7

Workflow file for this run

name: Build
on:
pull_request:
types: opened
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install packaging dependencies
run: pip3 install setuptools wheel twine
- name: Build Wheel
run: |
pip3 install build &&
python3 -m build
- name: Install
run: |
twine check dist/* &&
pip3 install dist/* --force-reinstall