Adding Publish Pipeline #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: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Setup App | |
run: | | |
python -m venv venv_python3-sdk | |
VIRTUAL_ENV_DISABLE_PROMPT=1 source venv_python3-sdk/bin/activate | |
pip install . | |
pip install build | |
python -m build | |
- name: Run Tests | |
run: sh run.sh |