update to latest version: v1.0.4 #1
Workflow file for this run
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: 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 pipenv | |
- name: Install pipenv | |
run: pip install pipenv | |
# Pack and publish Python SDK | |
- name: Exec py client unit test | |
working-directory: . | |
run: make -f ./tools/Makefile test |