Merge pull request #19 from gogo2464/fix-critical-bug-on-username #10
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 | |
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 |