Skip to content

Merge pull request #19 from gogo2464/fix-critical-bug-on-username #10

Merge pull request #19 from gogo2464/fix-critical-bug-on-username

Merge pull request #19 from gogo2464/fix-critical-bug-on-username #10

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