update to latest version: v1.4.4 #27
Workflow file for this run
This file contains hidden or 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: unittest | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| jobs: | |
| unit-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - uses: actions/checkout@v3 | |
| # Set up python 3.9 | |
| - name: Prepare python env | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.9" | |
| # Install uv | |
| - name: Install uv | |
| run: pip install uv | |
| # Pack and publish Python SDK | |
| - name: Exec py client unit test | |
| run: make test |